17 lines
390 B
PHP
17 lines
390 B
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use think\Controller;
|
|
|
|
class Tencent extends Controller
|
|
{
|
|
public function call_back()
|
|
{
|
|
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);
|
|
}
|
|
} |