Files
yusheng-php/application/api/controller/Tencent.php

17 lines
390 B
PHP
Raw Normal View History

<?php
namespace app\api\controller;
use think\Controller;
class Tencent extends Controller
{
public function call_back()
{
2025-12-06 18:01:37 +08:00
return ['ActionStatus' => 'OK', 'ErrorInfo' => '', 'ErrorCode' => 0];
$data = input('post.');
$sign_data = input('get.');
$reslut = model('Tencent')->tencent_call_back($data,$sign_data);
return json($reslut);
}
}