2025-08-21 09:11:03 +08:00
|
|
|
<?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];
|
2025-08-21 09:11:03 +08:00
|
|
|
$data = input('post.');
|
|
|
|
|
$sign_data = input('get.');
|
|
|
|
|
$reslut = model('Tencent')->tencent_call_back($data,$sign_data);
|
|
|
|
|
return json($reslut);
|
|
|
|
|
}
|
|
|
|
|
}
|