This commit is contained in:
aozhiwei 2024-08-17 15:59:08 +08:00
parent b2313ee1eb
commit 495afd714d
2 changed files with 5 additions and 2 deletions

View File

@ -496,7 +496,7 @@ class AAMarket(object):
'desc': '充值-通过邮件购买',
'group': '!AAMarket',
'url': 'https://market-test.kingsome.cn/api/recharge/buy_with_email',
'headers': _common.JwtHeader,
'headers': _common.JcJwtHeader,
'is_json_params': True,
'request_params': [
],
@ -506,7 +506,6 @@ class AAMarket(object):
['goods_num', '', '商品数量'],
['account_address', '', '钱包地址(一般为小狐狸)'],
['currency_address', '', '货币地址'],
['email', '', 'email'],
],
'response': [
_common.RspHead(),

View File

@ -31,6 +31,10 @@ PassportJwtHeader = [
'Authorization Bearer {JwtToken} passport jwt'
]
JcJwtHeader = [
'Authorization Bearer {JwtToken} 洪亮 jwt'
]
MaybeJwtHeader = [
'Authorization Bearer {JwtToken} 可选参数'
]