1
This commit is contained in:
parent
91e7e6163d
commit
49cdfe5dc3
@ -27,6 +27,7 @@ class Market(object):
|
|||||||
'url': 'webapp/index.php?c=Market&a=auth',
|
'url': 'webapp/index.php?c=Market&a=auth',
|
||||||
'params': [
|
'params': [
|
||||||
['account', '', '钱包账号'],
|
['account', '', '钱包账号'],
|
||||||
|
['tips', '', 'tips'],
|
||||||
['nonce', '', 'nonce'],
|
['nonce', '', 'nonce'],
|
||||||
['signature', '', '签名'],
|
['signature', '', '签名'],
|
||||||
['net_id', '', '网络id'],
|
['net_id', '', '网络id'],
|
||||||
|
@ -469,11 +469,13 @@ class MarketController extends BaseController {
|
|||||||
public function auth()
|
public function auth()
|
||||||
{
|
{
|
||||||
$account = getReqVal('account', '');
|
$account = getReqVal('account', '');
|
||||||
|
$tips = getReqVal('tips', '') ;
|
||||||
$nonce = getReqVal('nonce', '');
|
$nonce = getReqVal('nonce', '');
|
||||||
$signature = getReqVal('signature', '');
|
$signature = getReqVal('signature', '');
|
||||||
$params = array(
|
$params = array(
|
||||||
'c' => 'BcService',
|
'c' => 'BcService',
|
||||||
'a' => 'authVerifySignature',
|
'a' => 'authVerifySignature',
|
||||||
|
'tips' => $tips,
|
||||||
'nonce' => $nonce,
|
'nonce' => $nonce,
|
||||||
'signature' => $signature
|
'signature' => $signature
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user