腾讯回调用户在线状态

This commit is contained in:
2025-08-20 21:33:02 +08:00
parent e7be8916d9
commit 80d47d9c7f
4 changed files with 127 additions and 55 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace app\api\controller;
use think\Controller;
class Tencent extends Controller
{
public function call_back()
{
$data = input('post.');
$sign_data = input('get.');
$reslut = model('Tencent')->tencent_call_back($data,$sign_data);
return json($reslut);
}
}