game2006api/webapp/controller/CallbackController.class.php
aozhiwei 4653cdd05c 1
2024-09-26 17:47:55 +08:00

23 lines
450 B
PHP

<?php
/*
services/callback/common/SignatureService.php
需要对web3service回调的做签名校验!!!
*/
require_once('services/CallBack.php');
use services\CallBackService;
class CallbackController extends BaseController {
public function dispatch()
{
error_log(json_encode($_REQUEST));
$cbService = new CallBackService();
$action = getReqVal('action', '');
$cbService->dispatch($action);
}
}