game2006api/doc/AAGameLog.py
aozhiwei 684638ec8b 1
2024-05-14 19:52:12 +08:00

26 lines
844 B
Python

import _common
class AAGameLog(object):
def __init__(self):
self.apis = [
{
'name': 'customReport',
'desc': '上报自定义日志',
'group': '!AAGameLog',
'url': 'https://gamelog-test.kingsome.cn/webapp/index.php?c=GameLog&a=customReport',
'params': [
_common.ReqHead(),
['gameid', '', '游戏id'],
['channel', '', '渠道编号'],
['event_name', '', '事件名'],
['account_id', '', '账号Id'],
['session_id', '', '会话id'],
['localuuid', '', '本地唯一Id'],
],
'response': [
_common.RspHead(),
]
},
]