28 lines
552 B
PHP
28 lines
552 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\api\controller;
|
||
|
|
|
||
|
|
use think\Controller;
|
||
|
|
|
||
|
|
class Tencent extends Controller
|
||
|
|
{
|
||
|
|
//腾讯IM回调
|
||
|
|
public function call_back(){
|
||
|
|
$data = input('post.');
|
||
|
|
$sign_data = input('get.');
|
||
|
|
$reslut = model('UserTencent')->tencent_call_back($data,$sign_data);
|
||
|
|
return json($reslut);
|
||
|
|
}
|
||
|
|
|
||
|
|
// public function test(){
|
||
|
|
|
||
|
|
// $reslut = model('UserTencent')->tencent_group_quit_call_back(1,200067);
|
||
|
|
// halt($reslut);
|
||
|
|
// return json($reslut);
|
||
|
|
// }
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|