1 Star 0 Fork 1

浅浅/460体育接支付

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
api.http 15.50 KB
一键复制 编辑 原始数据 按行查看 历史
浅浅 提交于 2023-12-19 14:51 . 首次
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
### member register
POST {{host}}/auth/register HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
{
"name":"test03",
"password":"123456",
"password_confirmation":"123456",
"phone":"13211223322",
"qk_pwd":"123456",
"realname":"张三",
"register_site":"手机注册",
"key":"$2y$10$uYcAFxLJbgJo.0nLdjq1PuO8Zvat5qjXcm8lGl.bmEBYe.U1H2GBu",
"captcha":"8819"
}
### app register
POST {{host}}/auth/app/register HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
{
"name":"test06",
"password":"123456",
"register_site":"app",
"token":"e7fc228432b77e06763b9efb73dbb563",
"key":"$2y$10$CIGFV5/hUCliRN2eMsHjPOKNMa4bCwgpbf2m1V43l0YHcrmBJ7BHi",
"captcha":"7668"
}
### app login
POST {{host}}/auth/app/login HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
{
"name":"test01",
"password":"123456"
}
> {%
client.global.set("memberToken", response.body.data.access_token);
%}
### login captcha
POST {{host}}/auth/captcha HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### member login
POST {{host}}/auth/login
content-type: application/json
X-Requested-With: XMLHttpRequest
{
"name":"test000",
"password":"123456",
"captcha":"9732",
"key":"$2y$10$pMZNGpAdK1oTr5hZsYD.mO3lNkgFO7mVl/7BUCZ06/2JHqo8qBuPu"
}
> {%
client.global.set("memberToken", response.body.data.access_token);
%}
# {%
# client.global.set("memberToken",login.response.body.$.data.access_token)
# %}
# @memberToken = {{login.response.body.$.data.access_token}}
# @refreshToken = {{login.response.body.$.data.refresh_token}}
### member info
POST {{host}}/auth/me HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### member token refesh
# @name refresh
POST {{host}}/auth/refresh HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
// @refreshToken = {{refresh.response.body.$.data.access_token}}
### member logout
POST {{host}}/auth/logout HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### modify password
POST {{host}}/member/password/modify HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"oldpassword":"1234567",
"password":"123456",
"password_confirmation":"123456"
}
### set qk password
POST {{host}}/member/drawing_pwd/set HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"qk_pwd":"123456"
}
### modify password
POST {{host}}/member/drawing_pwd/modify HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"old_qk_pwd":"123457",
"qk_pwd":"123458",
"qk_pwd_confirmation":"123458"
}
### agent apply
POST {{host}}/agent/apply HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name":"测试",
"phone":"13290391023",
"reason":"申请"
}
### recharge
POST {{host}}/recharge/normal?lang=en HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name":"昵称",
"money":20000.00,
"account":"测试账户",
"hk_at":"2021-03-18 16:44:01",
"payment_type":"company_bankpay",
"payment_id":2,
"payment_account":"622100120023112",
"payment_name":"张三"
}
### recharge online
POST {{host}}/recharge/online?lang=en HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"money":6000.00,
"payment_type":"online_alipay",
"payment_id": 1
}
### recharge list
POST {{host}}/recharge/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"limit":2
}
### payments list
GET {{host}}/payments/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### member drawing
POST {{host}}/drawing HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name":"张三",
"money":200.00,
"account":"测试账户",
"member_bank_id":1,
"qk_pwd":123456,
"member_remark": "会员提款时的备注"
}
### member drawing list
GET {{host}}/drawing/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### game record
POST {{host}}/game/record HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### member money log
GET {{host}}/moneylog HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"created_at":["2020-03-23 00:00:00","2020-03-25 00:00:00"]
}
### member money log type
GET {{host}}/moneylog/type HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### memer bank create
POST {{host}}/member/bank?lang=en HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"card_no":"24334525435345",
"bank_type":"ICBC",
"owner_name":"测试"
}
### member bank list
GET {{host}}/member/bank HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### memer bank update
PATCH {{host}}/member/bank/3 HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"card_no":"24334525435345",
"bank_type":2,
"owner_name":"测试2"
}
### message list
POST {{host}}/member/message/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### message send list
POST {{host}}/member/message/send_list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### unread message list
POST {{host}}/member/message/unread_list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### message read list
POST {{host}}/member/message/read_list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### reply message
POST {{host}}/member/message/send/20 HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"title":"用户回复标题",
"content":"用户回复内容"
}
### 会员反馈
POST {{host}}/member/message/send HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"title":"用户反馈标题",
"content":"用户反馈内容"
}
### read message
POST {{host}}/member/message/22/read HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### message delete
DELETE {{host}}/member/message/22/delete HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### message delete all
DELETE {{host}}/member/message/delete_all HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### get redbag
POST {{host}}/activity/redbag HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus
POST {{host}}/dailybonus/check HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus award
POST {{host}}/dailybonus/1/award HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus money history
GET {{host}}/dailybonus/money/history HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus award history
GET {{host}}/dailybonus/award/history HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus history
GET {{host}}/dailybonus/history HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### daily bonus award list
GET {{host}}/dailybonus/award/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### fsnow list
GET {{host}}/fsnow/list
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 游戏相关
### game login
POST {{host}}/game/login HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"api_code":"ag",
"gameCode":"0"
}
### game balance
POST {{host}}/game/balance HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"api_code":"ag"
}
### game deposit
POST {{host}}/game/deposit HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"api_code":"ag",
"money":10
}
### game withdrawal
POST {{host}}/game/withdrawal HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"api_code":"ag",
"money":10
}
### api game list
GET {{host}}/games/apis?gameType=3 HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### banners
GET {{host}}/banners?groups=new1 HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### games
GET {{host}}/games HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### system notice
GET {{host}}/system/notices HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### abouts
GET {{host}}/abouts HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### activity
GET {{host}}/activities HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### activity detail
GET {{host}}/activity/1 HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
### team child list
POST {{host}}/team/childlist HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### team fdinfo
GET {{host}}/team/fdinfo HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### team add
POST {{host}}/team/add HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name":"test031",
"password":"123456",
"password_confirmation":"123456",
"rates":[
{"game_type":1,"rate":6.0},
{"game_type":2,"rate":6.0},
{"game_type":3,"rate":6.0},
{"game_type":4,"rate":6.0},
{"game_type":5,"rate":6.0},
{"game_type":6,"rate":6.0},
{"game_type":7,"rate":6.0},
{"game_type":99,"rate":6.0}
]
}
### team childrates
POST {{host}}/team/childrates HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"child_member_id":11,
"rates":[
{"game_type":1,"rate":6.0}
]
}
### team report
POST {{host}}/team/report HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"created_at":["2020-01-01","2020-10-20"]
}
### team chart
POST {{host}}/team/chart HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### team invite create
POST {{host}}/team/invite/create HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"rates":[
{"game_type":1,"rate":2.0},
{"game_type":2,"rate":2.0},
{"game_type":3,"rate":2.0},
{"game_type":4,"rate":2.0},
{"game_type":5,"rate":2.0},
{"game_type":6,"rate":2.0},
{"game_type":7,"rate":2.0},
{"game_type":99,"rate":2.0}
]
}
### team invite list
GET {{host}}/team/invite/list HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### team invite update
POST {{host}}/team/invite/update HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"invite_id":1,
"is_open":1,
"rates":[
{"game_type":1,"rate":3.0}
]
}
### team invite records
POST {{host}}/team/invite/records HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"invite_id":1
}
### user info
POST {{host}}/auth/info/update HTTP/1.1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"realname":"test",
"phone":"13244312322",
"qq":"234234"
}
### 下级详情
GET {{host}}/team/child/detail?member_id=14
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 业绩查询
GET {{host}}/team/performance
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 业绩查询详情(直推/代理)
GET {{host}}/team/performanceDetail?game_type=1&is_direct=1
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 转盘领奖
POST {{host}}/wheel/award?lang=zh_cn
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name": "aa1234"
}
### 真人升级数据
GET {{host}}/levelup/live/setting?lang=zh_cn
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name": "haha01"
}
### 电子升级数据
GET {{host}}/levelup/slot/setting
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name": "haha01"
}
### 真人升级查询
GET {{host}}/levelup/live/search
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name": "haha01"
}
### 电子升级查询
GET {{host}}/levelup/slot/search?lang=en&name=haha01
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"name": "haha01"
}
### 添加收藏
POST {{host}}/favor/add?lang=en
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"game_type":3,
"api_name":"AG",
"model_id":1
}
### 删除收藏
POST {{host}}/favor/delete?lang=en
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
{
"game_type":3,
"api_name":"AG",
"model_id":1
}
### 收藏列表
GET {{host}}/favor/list
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 首页热门活动
GET {{host}}/main/advertise?lang=th
content-type: application/json
X-Requested-With: XMLHttpRequest
### 首页热门游戏
GET {{host}}/main/hotgame?lang=en
content-type: application/json
X-Requested-With: XMLHttpRequest
### 首页比赛
GET {{host}}/main/sport?lang=en
content-type: application/json
X-Requested-With: XMLHttpRequest
### VIP信息
GET {{host}}/member/vips?lang=zh_cn
content-type: application/json
X-Requested-With: XMLHttpRequest
Authorization: Bearer {{memberToken}}
### 反水等级
GET {{host}}/fs/levels?game_type=1
content-type: application/json
X-Requested-With: XMLHttpRequest
###
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xjyphper/460sports.git
git@gitee.com:xjyphper/460sports.git
xjyphper
460sports
460体育接支付
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385