23 lines
450 B
PHP
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);
|
|
}
|
|
|
|
}
|