26 lines
753 B
Python
26 lines
753 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class AccountVerify(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'method': 'GET',
|
|
'name': 'canBind',
|
|
'desc': '是否可绑定',
|
|
'group': 'AccountVerify',
|
|
'url': 'webapp/index.php?c=AccountVerify&a=canBind',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['guest_account', '', 'guest账号'],
|
|
['target_plat', '', '绑定的目标账号渠道'],
|
|
['target_account', '', '绑定的目标账号'],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|