{"info":{"title":"祈盟SDK","description":"","version":"1.0.0","x-project-id":"301a10"},"openapi":"3.0.0","tags":[{"name":"支付宝","description":"","x-type":"folder","x-url":"","x-target-id":"4038850"},{"name":"易宝支付","description":"","x-type":"folder","x-url":"","x-target-id":"4038882"},{"name":"回调","description":"","x-type":"folder","x-url":"","x-target-id":"3baee8e"},{"name":"游戏内发起支付","description":"","x-type":"folder","x-url":"","x-target-id":"3baee97"},{"name":"登陆流程","description":"","x-type":"folder","x-url":"","x-target-id":"3baffbf"},{"name":"祈盟发起充值","description":"","x-type":"folder","x-url":"","x-target-id":"3bb0307"},{"name":"CPS后台","description":"","x-type":"folder","x-url":"","x-target-id":"40254cf"},{"name":"代金券","description":"","x-type":"folder","x-url":"","x-target-id":"408c7a9"},{"name":"我的","description":"","x-type":"folder","x-url":"","x-target-id":"426d56c"},{"name":"抖音平台","description":"","x-type":"folder","x-url":"","x-target-id":"96b149c77d05b"},{"name":"礼包","description":"","x-type":"folder","x-url":"","x-target-id":"11cad6baff2002"},{"name":"相关日志","description":"\n游戏订单回调地址:`tail -f -n 100 runtime/log/callBacklog/202509/25.log`","x-type":"folder","x-url":"","x-target-id":"1416d46ab36616"},{"name":"注册&登录","description":"","x-type":"folder","x-url":"","x-target-id":"1fc8341077d02b"},{"name":"公共","description":"sign 规则:\n```js\n签名数据去掉 sign 参数;\n\n// 1. 按 key 升序排列\nconst sortedData = filteredData.sort((a, b) => a.key.localeCompare(b.key));\n// 2. 拼接数组 & 转换为小写\nvar result = (sortedData.map(item => `${item.key}=${item.value}`).join('') + apt.environment.get(\"client_appkey\")).toLowerCase();\n// 3. 并把 特殊字符转换小写\nconst lowerCaseConversion = {\n 'Ⅰ': 'ⅰ', 'Ⅱ': 'ⅱ', 'Ⅲ': 'ⅲ', 'Ⅳ': 'ⅳ',\n 'Ⅴ': 'ⅴ', 'Ⅵ': 'ⅵ', 'Ⅶ': 'ⅶ', 'Ⅷ': 'ⅷ',\n 'Ⅸ': 'ⅸ', 'Ⅹ': 'ⅹ', 'Ⅺ': 'ⅺ', 'Ⅻ': 'ⅻ'\n};\nresult = result.replace(/[ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ]/g, matched => lowerCaseConversion[matched]);\n// 4. md5\nconst sign = CryptoJS.MD5(result).toString();\n\n```\n\n----\n\n接口加密:\nH5 加密的话,需要在 header 头传 device=4 标识(因为H5和其他端签名秘钥不能一样,所以加上了区分)。\n```js\n/**\n * 接口加密:\n * \n * jsonData = 加密数据(json串)\n * paddedKey = 加密盐\n */\nfunction getEncrypt(jsonData, paddedKey) {\n // AES 密钥(必须是 16 字节)\n var key = CryptoJS.enc.Utf8.parse(paddedKey); // 转换密钥为字节数组\n // 加密\n var ciphertext = CryptoJS.AES.encrypt(jsonData, key, {\n mode: CryptoJS.mode.ECB,\n padding: CryptoJS.pad.Pkcs7,\n }).toString();\n return ciphertext;\n}\n\n/**\n * 接口解密:\n * \n * ciphertext = 解密串\n * paddedKey = 加密盐\n */\nfunction getDecrypt(ciphertext, paddedKey) {\n // AES 密钥(必须是 16 字节)\n var key = CryptoJS.enc.Utf8.parse(paddedKey); // 转换密钥为字节数组\n var bytes = CryptoJS.AES.decrypt(ciphertext, key, {\n mode: CryptoJS.mode.ECB,\n padding: CryptoJS.pad.Pkcs7,\n });\n\n // 将字节数组转换为 UTF-8 字符串\n var originalText = bytes.toString(CryptoJS.enc.Utf8);\n return originalText;\n}\n\n// 转换数据为 JSON 字符串\nvar jsonData = '{\"username\":\"13121776520\",\"password\":\"123456\",\"token\":\"{{token}}\",\"device\":4,\"channel_id\":5215,\"imeil\":\"00000000-1645-d5b5-ffff-ffffef05ac4a-wen\",\"version\":\"v3.4.4\",\"aes_key\":\"qmQWERBABA202308\",\"aes_key_h5\":\"qmQWERBABA202412\",\"appid\":30,\"gameid\":30,\"sign\":\"b446d4a2d75baeea11dc28c9bc31af9c\"}';\nconsole.log(\"# jsonData: \", '@' + jsonData);\nvar getEncrypt = getEncrypt(jsonData, 'qmQWERBABA202412');\nconsole.log(\"# getEncrypt: \", getEncrypt);\nvar getDecrypt = getDecrypt(getEncrypt, 'qmQWERBABA202412');\nconsole.log(\"# getDecrypt: \", getDecrypt);\n\n```","x-type":"folder","x-url":"","x-target-id":"2100ed0f77d05b"},{"name":"绑定手机号","description":"","x-type":"folder","x-url":"","x-target-id":"2107727177d073"},{"name":"支付(游戏)","description":"游戏内购买道具","x-type":"folder","x-url":"","x-target-id":"27ad642d77d381"},{"name":"角色管理","description":"","x-type":"folder","x-url":"","x-target-id":"30be0367f7d541"},{"name":"直播平台","description":"\n## 直播平台 对应接口说明\n抓取祈盟SDK数据说明:\n~~- 数据中心》渠道数据》数据汇总:(接口)~~\n~~- 抓取的 SDK后台》推广管理》推广员数据(Pay/channelPay.html);~~\n- 数据中心》渠道数据》渠道明细:(5分钟一次,爬虫)\n - 【后续版本舍弃,走接口】抓取的 SDK后台》充值记录管理》充值记录管理(抓取)(Pay/index.html);\n - 接口:/gh/get_pay_list\n- 数据中心》渠道数据》数据汇总:(早9点执行一次,接口)\n - 接口:/gh/channel_data_summary_v2\n- 数据中心》渠道数据》玩家留存:(早3点执行一次、早5点执行一次更新留存)\n - 接口:/gh/channel_data_summary_v2\n- 数据中心》渠道数据》注册数据:(1分钟一次,接口)\n - 接口:/gh/get_sub_user_list\n\n\n\n## 直播平台脚本执行情况\n\nqimeng_keep = 抓取推广数据 - 早3点执行一次\nqimeng_keep_update = 抓取更新推广数据中的留存(更新留存:次留~30留) - 早5点执行一次\n\nqm_reg = 抓取注册数据 - 1分钟一次\nqimeng_new_total = 抓取 数据汇总 - 早9点执行一次\nqimeng_admin = 渠道明细 - 5分钟一次","x-type":"folder","x-url":"","x-target-id":"32303e6cbf6207"},{"name":"抖音游戏平台","description":"","x-type":"folder","x-url":"","x-target-id":"330b42fafcc146"},{"name":"祈盟直播","description":"","x-type":"folder","x-url":"","x-target-id":"331cfa823f605a"},{"name":"其他","description":"","x-type":"folder","x-url":"","x-target-id":"3c749fb"},{"name":"SDK 后台","description":"","x-type":"folder","x-url":"","x-target-id":"40b2dab"},{"name":"Python 分包","description":"","x-type":"folder","x-url":"","x-target-id":"40b40a9"},{"name":"游戏最新版本检测","description":"","x-type":"folder","x-url":"","x-target-id":"457c0d4"},{"name":"公告&强更","description":"","x-type":"folder","x-url":"","x-target-id":"457c132"},{"name":"趣智连","description":"","x-type":"folder","x-url":"","x-target-id":"484e3b5"},{"name":"第三方平台","description":"","x-type":"folder","x-url":"","x-target-id":"48a8663"},{"name":"聚合游戏回调","description":"","x-type":"folder","x-url":"","x-target-id":"49012f9"},{"name":"客服","description":"","x-type":"folder","x-url":"","x-target-id":"49dff9c"},{"name":"ws","description":"","x-type":"folder","x-url":"","x-target-id":"49e6bb9"},{"name":"176 API","description":"","x-type":"folder","x-url":"","x-target-id":"4ce4343"},{"name":"更新管理(热更新)","description":"","x-type":"folder","x-url":"","x-target-id":"4ce444e"},{"name":"联动优势","description":"","x-type":"folder","x-url":"","x-target-id":"5030a53"},{"name":"订单","description":"","x-type":"folder","x-url":"","x-target-id":"534b843"},{"name":"第三方合作","description":"","x-type":"folder","x-url":"","x-target-id":"257b7a3f6126"},{"name":"相关说明","description":"账号归属:\n> 玩家在A渠道的【仙剑】注册账号,账号在【仙剑】归属于A渠道;若玩家使用此账号首次登陆B渠道的【黑暗之潮】,则账号在【黑暗之潮】归属于B渠道。\n\n分包服务器的文件下载域名:\nhttps://sdkdown.qmgames.cn\nhttps://sdkdevdown.qmgames.cn\nCDN 下载域名:\nhttps://cdnsdkdevdown.qmgames.cn\n\n网页版,和祈盟SDK后台一致:\n隐私协议:http://sdkapi.qmgames.cn/privacy.html\n用户协议:http://sdkapi.qmgames.cn/user_agreement.html\n\n\n祈盟SDK需求文档:https://jcnxxk249yf9.feishu.cn/docx/COakdV58GoRj1ZxfR1QcJAtanEg\n\n隐私协议:http://sdkapi.qmgames.cn/game_privacy.html\n用户协议:http://sdkapi.qmgames.cn/user_agreement.html\n\n\n## 归属保护:\n1. /v1.is_identity/isVerified.html (是否已实名接口) 执行归属保护处理(主要针对实名互通);\n2. /v2.user/personalIdentity (实名认证接口) 执行归属保护处理\n\n\n","x-type":"folder","x-url":"","x-target-id":"1deb9f03c33dd"},{"name":"发起下单-范例","description":"","x-type":"folder","x-url":"","x-target-id":"9fa7e1fb2413f"},{"name":"服务端","description":"/v2.complex_authentication/check","x-type":"folder","x-url":"","x-target-id":"10b5c98d3240f4"},{"name":"支付回调","description":"","x-type":"folder","x-url":"","x-target-id":"188d6149b24038"},{"name":"SDK-H5","description":"\n公共参数 - Body:\n```js\n- device = 设备来源(1=PC, 2=安卓, 3=苹果, 4=H5)(必填)\n- channel_id = 渠道 ID(必填)\n- appid = 应用 ID(必填)\n- gameid = 游戏 ID(必填)\n- imeil = 设备号(必填)\n- version = 版本号(必填)\n- token = 登录 Token(非必填)\n```\n","x-type":"folder","x-url":"","x-target-id":"1eb64acf37d002"},{"name":"新设备判断","description":"","x-type":"folder","x-url":"","x-target-id":"21121a41bcc182"},{"name":"充值(平台币)","description":"","x-type":"folder","x-url":"","x-target-id":"22a3d998f7d251"},{"name":"代金卷","description":"","x-type":"folder","x-url":"","x-target-id":"22a7a42f37d270"},{"name":"SDK","description":"","x-type":"folder","x-url":"","x-target-id":"23ab3c1177d2df"},{"name":"获取请求地址","description":"","x-type":"folder","x-url":"","x-target-id":"26042fee32405f"},{"name":"客服中心","description":"","x-type":"folder","x-url":"","x-target-id":"27250a4733619c"},{"name":"分包程序","description":"","x-type":"folder","x-url":"","x-target-id":"277b86a9336490"},{"name":"聚合渠道","description":"渠道效验 = /v1.complex_login/getSpecialParam\n登录效验 = /v1.complex_login/index.html\n支付回调效验 = /v1.complex_pay_notify/notify/channelqf/test/gameidqf/10\n\n## 渠道互通\n- 服务端开发人员:提前在渠道“登录效验”接口配置;\n- 渠道对接开发人员:\n\n给渠道方提供的H5游戏地址:https://qmdevsdkh5.qmgames.cn/#/?g=552&QmChannel=zhaosy\n\n\n\n找手游 渠道:\n- 像素名将录H5: http://page.4000yx.com/active/gameAndDown?game_id=20795&client_id=4231","x-type":"folder","x-url":"","x-target-id":"2bbea2bc37d4a6"},{"name":"聚合游戏回调-服务端","description":"","x-type":"folder","x-url":"","x-target-id":"2bbea2bc37d4ae"},{"name":"ai助手","description":"","x-type":"folder","x-url":"","x-target-id":"2c06d348ff6243"},{"name":"相关逻辑说明记录","description":"\n\n\n- 订单支付成功时,发现订单是取消状态并且使用了平台币|代金卷的订单,则取消并退单\n > 第三方返回支付成功,检测订单状态为已取消时,检测此订单是否包含平台币/代金券,包含任意其中一个则自动退款,不包含则订单成功\n\n\n","x-type":"folder","x-url":"","x-target-id":"2c117dc5ff6716"},{"name":"换绑手机号","description":"","x-type":"folder","x-url":"","x-target-id":"2d2afc4635ea3d"},{"name":"第三方","description":"","x-type":"folder","x-url":"","x-target-id":"30a5118a7cc00a"},{"name":"公司","description":"年假单次请假不少于百分之三十;","x-type":"folder","x-url":"","x-target-id":"327d881aff6294"},{"name":"API","description":"","x-type":"folder","x-url":"","x-target-id":"3baee8d"},{"name":"手机号注册+登陆","description":"","x-type":"folder","x-url":"","x-target-id":"3baee92"},{"name":"网站PC","description":"","x-type":"folder","x-url":"","x-target-id":"3baeea3"},{"name":"充值记录管理","description":"","x-type":"folder","x-url":"","x-target-id":"3baeea6"},{"name":"个人中心","description":"","x-type":"folder","x-url":"","x-target-id":"3c2a6bf"},{"name":"账户密码注册+登陆","description":"","x-type":"folder","x-url":"","x-target-id":"3c7e5e0"},{"name":"祈盟SDK","description":"","x-type":"folder","x-url":"","x-target-id":"408c7a3"},{"name":"系统消息","description":"","x-type":"folder","x-url":"","x-target-id":"4343c98"},{"name":"SDK 管理后台","description":"","x-type":"folder","x-url":"","x-target-id":"49cb3e5"},{"name":"游戏API","description":"","x-type":"folder","x-url":"","x-target-id":"4ce4610"},{"name":"渠道效验","description":"","x-type":"folder","x-url":"","x-target-id":"55d46d9"},{"name":"旅人-魔力宝贝","description":"","x-type":"folder","x-url":"","x-target-id":"258808ff6127"},{"name":"第三方注册","description":"","x-type":"folder","x-url":"","x-target-id":"12c92730b363c7"},{"name":"手机注册","description":"","x-type":"folder","x-url":"","x-target-id":"20403464b7d03e"},{"name":"账户注册","description":"","x-type":"folder","x-url":"","x-target-id":"2105e6cb37d06c"},{"name":"账户登录","description":"","x-type":"folder","x-url":"","x-target-id":"21093f4bf7d08e"},{"name":"忘记密码","description":"忘记密码接口流程:\n1. 图形验证码 = /v2.Captcha/getCaptcha\n2. 发送验证码 = /v2.forget/resetPwdSendCode\n3. 效验验证码 = /v2.forget/resetPwdCheckCode\n4. 重置密码 = /v2.forget/forgetPwdToReset\n\n","x-type":"folder","x-url":"","x-target-id":"211b245277d16f"}],"paths":{"/v1.pay_notify_coin/alipayAop.html":{"post":{"x-target-id":"4024131","x-protocol":"http","summary":"充值回调(平台币)","description":"","tags":["API/支付回调/支付宝","API/回调"],"x-mark-id":"1","x-updated-at":"2023-11-15T09:41:19+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"gmt_create":{"type":"string","description":"","example":"2023-08-14 14:12:36"},"charset":{"type":"string","description":"","example":"utf-8"},"seller_email":{"type":"string","description":"","example":"qmwhadmin@163.com"},"subject":{"type":"string","description":"","example":"平台币"},"sign":{"type":"string","description":"","example":"ZPhzTVbTfEPA+celtN0QiXE/zklNdyAgxl5DdJKf8X/K/lT4YfTXWVOS0u1egdXhHDd64+7MeViCrZfg+ocSaNu5hHJWzZhWyB1A64u+a5t7cSAU43NRoo+qDxTcB/Fxd0jk5LD5nENto0So23Htqeyudyn/Xc7k3zugAkov6Uy45Vmzq54P2fR1kakelNPzd6AjCq9dTPbWGhiL0Bwl4ngWdrsJN6qoU6dwzFV6NkthAjflRBzVj8bwRnvqPswkdE8C9csyNkezzEIp3POLensfPWftwZ7b2UV4f2MUTJq2OIjr7FjChq3sBkI+wKMqlWb/wKPPI5MwMge3Fy6rmw=="},"buyer_id":{"type":"string","description":"","example":"2088022151356531"},"invoice_amount":{"type":"string","description":"","example":"1.00"},"notify_id":{"type":"string","description":"","example":"2023081401222141238056531486604990"},"fund_bill_list":{"type":"string","description":"","example":"[{'amount':'1.00','fundChannel':'ALIPAYACCOUNT'}]"},"notify_type":{"type":"string","description":"","example":"trade_status_sync"},"trade_status":{"type":"string","description":"","example":"TRADE_SUCCESS"},"receipt_amount":{"type":"string","description":"","example":"1.00"},"buyer_pay_amount":{"type":"string","description":"","example":"1.00"},"app_id":{"type":"string","description":"","example":"2021004108688387"},"sign_type":{"type":"string","description":"","example":"RSA2"},"seller_id":{"type":"string","description":"","example":"2088641611414941"},"gmt_payment":{"type":"string","description":"","example":"2023-08-14 14:12:37"},"notify_time":{"type":"string","description":"","example":"2023-08-14 14:12:38"},"version":{"type":"string","description":"","example":"1.0"},"out_trade_no":{"type":"string","description":"","example":"COIN16919935433640179260"},"total_amount":{"type":"string","description":"","example":"1.00"},"trade_no":{"type":"string","description":"","example":"2023081422001456531442621065"},"auth_app_id":{"type":"string","description":"","example":"2021004108688386"},"buyer_logon_id":{"type":"string","description":"","example":"ahj***@163.com"},"point_amount":{"type":"string","description":"","example":"0.00"}},"required":["gmt_create","charset","seller_email","subject","sign","buyer_id","invoice_amount","notify_id","fund_bill_list","notify_type","trade_status","receipt_amount","buyer_pay_amount","app_id","sign_type","seller_id","gmt_payment","notify_time","version","out_trade_no","total_amount","trade_no","auth_app_id","buyer_logon_id","point_amount"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.pay_notify/alipayAop.html":{"post":{"x-target-id":"4024191","x-protocol":"http","summary":"支付回调(购买道具)","description":"","tags":["API/支付回调/支付宝"],"x-mark-id":"1","x-updated-at":"2023-11-07T15:22:33+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"gmt_create":{"type":"string","description":"","example":"2023-08-14 14:12:36"},"charset":{"type":"string","description":"","example":"utf-8"},"seller_email":{"type":"string","description":"","example":"qmwhadmin@163.com"},"subject":{"type":"string","description":"","example":"平台币"},"sign":{"type":"string","description":"","example":"ZPhzTVbTfEPA+celtN0QiXE/zklNdyAgxl5DdJKf8X/K/lT4YfTXWVOS0u1egdXhHDd64+7MeViCrZfg+ocSaNu5hHJWzZhWyB1A64u+a5t7cSAU43NRoo+qDxTcB/Fxd0jk5LD5nENto0So23Htqeyudyn/Xc7k3zugAkov6Uy45Vmzq54P2fR1kakelNPzd6AjCq9dTPbWGhiL0Bwl4ngWdrsJN6qoU6dwzFV6NkthAjflRBzVj8bwRnvqPswkdE8C9csyNkezzEIp3POLensfPWftwZ7b2UV4f2MUTJq2OIjr7FjChq3sBkI+wKMqlWb/wKPPI5MwMge3Fy6rmw=="},"buyer_id":{"type":"string","description":"","example":"2088022151356531"},"invoice_amount":{"type":"string","description":"","example":"1.00"},"notify_id":{"type":"string","description":"","example":"2023081401222141238056531486604990"},"fund_bill_list":{"type":"string","description":"","example":"[{'amount':'1.00','fundChannel':'ALIPAYACCOUNT'}]"},"notify_type":{"type":"string","description":"","example":"trade_status_sync"},"trade_status":{"type":"string","description":"","example":"TRADE_SUCCESS"},"receipt_amount":{"type":"string","description":"","example":"1.00"},"buyer_pay_amount":{"type":"string","description":"","example":"1.00"},"app_id":{"type":"string","description":"","example":"202100410868838311"},"sign_type":{"type":"string","description":"","example":"RSA2"},"seller_id":{"type":"string","description":"","example":"2088641611414941"},"gmt_payment":{"type":"string","description":"","example":"2023-08-14 14:12:37"},"notify_time":{"type":"string","description":"","example":"2023-08-14 14:12:38"},"version":{"type":"string","description":"","example":"1.0"},"out_trade_no":{"type":"string","description":"","example":"COIN16919935433640179260"},"total_amount":{"type":"string","description":"","example":"1.00"},"trade_no":{"type":"string","description":"","example":"2023081422001456531442621065"},"auth_app_id":{"type":"string","description":"","example":"2021004108688386"},"buyer_logon_id":{"type":"string","description":"","example":"ahj***@163.com"},"point_amount":{"type":"string","description":"","example":"0.00"}},"required":["gmt_create","charset","seller_email","subject","sign","buyer_id","invoice_amount","notify_id","fund_bill_list","notify_type","trade_status","receipt_amount","buyer_pay_amount","app_id","sign_type","seller_id","gmt_payment","notify_time","version","out_trade_no","total_amount","trade_no","auth_app_id","buyer_logon_id","point_amount"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/gh/get_role":{"post":{"x-target-id":"5183504","x-protocol":"http","summary":"获取角色数据","description":"根据条件查询的所有相关数据,没有做“所属直播平台渠道数据”限制;\n\n```json\n\"rolename\": \"金石乐和\", // 角色名\n\"server_id\": \"9\", // 区服ID\n\"server_name\": \"双线9服\", // 区服名\n\"create_time\": \"2023-09-09 11:05:16\" // 添加时间\n```\n","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-05-28T09:53:38+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\"params\":\"[{\\\"aid\\\":368115,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326635},{\\\"aid\\\":368114,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326634},{\\\"aid\\\":368113,\\\"gid\\\":\\\"996\\\",\\\"id\\\":326633},{\\\"aid\\\":368112,\\\"gid\\\":\\\"891\\\",\\\"id\\\":326632},{\\\"aid\\\":368111,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326631},{\\\"aid\\\":362181,\\\"gid\\\":\\\"1023\\\",\\\"id\\\":326630},{\\\"aid\\\":368110,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326629},{\\\"aid\\\":362267,\\\"gid\\\":\\\"1045\\\",\\\"id\\\":326628},{\\\"aid\\\":368109,\\\"gid\\\":\\\"1045\\\",\\\"id\\\":326627},{\\\"aid\\\":368108,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326626},{\\\"aid\\\":368107,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326625},{\\\"aid\\\":368106,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326624},{\\\"aid\\\":368105,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326623},{\\\"aid\\\":368104,\\\"gid\\\":\\\"891\\\",\\\"id\\\":326622},{\\\"aid\\\":368103,\\\"gid\\\":\\\"891\\\",\\\"id\\\":326621},{\\\"aid\\\":368102,\\\"gid\\\":\\\"891\\\",\\\"id\\\":326620},{\\\"aid\\\":368101,\\\"gid\\\":\\\"891\\\",\\\"id\\\":326619},{\\\"aid\\\":368100,\\\"gid\\\":\\\"899\\\",\\\"id\\\":326618},{\\\"aid\\\":368099,\\\"gid\\\":\\\"901\\\",\\\"id\\\":326617},{\\\"aid\\\":368098,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326616},{\\\"aid\\\":368097,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326615},{\\\"aid\\\":368096,\\\"gid\\\":\\\"550\\\",\\\"id\\\":326614},{\\\"aid\\\":368095,\\\"gid\\\":\\\"957\\\",\\\"id\\\":326613}]\",\"type\":\"1\",\"sign\":\"11afcc4dc543457742546468269ccd10\"}"}}},"responses":{"200":{"description":"成功-列表","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 200,\n\t\"msg\": \"成功\",\n\t\"data\": {\n\t\t\"4\": [\n\t\t\t{\n\t\t\t\t\"rolename\": \"绕清城\",\n\t\t\t\t\"server_id\": \"63010\",\n\t\t\t\t\"server_name\": \"星河落瀑\",\n\t\t\t\t\"create_time\": \"2025-04-22 09:26:55\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"rolename\": \"龙天\",\n\t\t\t\t\"server_id\": \"服务器id\",\n\t\t\t\t\"server_name\": \"区服名称\",\n\t\t\t\t\"create_time\": \"2023-10-11 10:40:47\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"rolename\": \"wwwff\",\n\t\t\t\t\"server_id\": \"5\",\n\t\t\t\t\"server_name\": \"仙子奇踪(安卓版)\",\n\t\t\t\t\"create_time\": \"2023-12-15 10:49:04\"\n\t\t\t}\n\t\t],\n\t\t\"1\": [\n\t\t\t{\n\t\t\t\t\"rolename\": \"金石乐和\",\n\t\t\t\t\"server_id\": \"9\",\n\t\t\t\t\"server_name\": \"双线9服\",\n\t\t\t\t\"create_time\": \"2023-09-09 11:05:16\"\n\t\t\t}\n\t\t],\n\t\t\"3\": [\n\t\t\t{\n\t\t\t\t\"rolename\": \"天魄绍钧\",\n\t\t\t\t\"server_id\": \"9\",\n\t\t\t\t\"server_name\": \"双线9服\",\n\t\t\t\t\"create_time\": \"2023-09-23 16:44:46\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"rolename\": \"龙天\",\n\t\t\t\t\"server_id\": \"服务器id\",\n\t\t\t\t\"server_name\": \"区服名称\",\n\t\t\t\t\"create_time\": \"2023-09-23 19:41:36\"\n\t\t\t}\n\t\t],\n\t\t\"2\": [\n\t\t\t{\n\t\t\t\t\"rolename\": \"屈突希\",\n\t\t\t\t\"server_id\": \"420001\",\n\t\t\t\t\"server_name\": \"提审服\",\n\t\t\t\t\"create_time\": \"2023-09-19 19:19:42\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"rolename\": \"海东芳声\",\n\t\t\t\t\"server_id\": \"9999\",\n\t\t\t\t\"server_name\": \"镜中花1区(Z1)\",\n\t\t\t\t\"create_time\": \"2023-09-23 15:33:17\"\n\t\t\t}\n\t\t],\n\t\t\"5\": [\n\t\t\t{\n\t\t\t\t\"rolename\": \"海东芳声\",\n\t\t\t\t\"server_id\": \"3105310001\",\n\t\t\t\t\"server_name\": \"镜中花1区(Z1)\",\n\t\t\t\t\"create_time\": \"2023-09-30 21:00:49\"\n\t\t\t}\n\t\t]\n\t}\n}"}}},"404":{"description":"成功-统计","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 200,\n\t\"msg\": \"成功\",\n\t\"data\": {\n\t\t\"4\": [\n\t\t\t3\n\t\t],\n\t\t\"1\": [\n\t\t\t1\n\t\t],\n\t\t\"3\": [\n\t\t\t2\n\t\t],\n\t\t\"2\": [\n\t\t\t2\n\t\t],\n\t\t\"5\": [\n\t\t\t1\n\t\t]\n\t}\n}"}}}}}},"/v1.pay_notify/xty_pay.html":{"post":{"x-target-id":"5640505","x-protocol":"http","summary":"支付-喜钛游(请求内容看说明文档)","description":"请求内容为text:\n```\n{\"charset\":\"UTF-8\",\"req_data\":\"{\\\"order_no\\\":\\\"1010371122024090517172764265\\\",\\\"pay_scene\\\":\\\"H5\\\",\\\"order_desc\\\":\\\"\\u6d4b\\u8bd5\\u8ba2\\u5355\\u6807\\u9898\\\",\\\"order_name\\\":\\\"\\u6d4b\\u8bd5\\u8ba2\\u5355\\u6807\\u9898\\\",\\\"pay_time\\\":\\\"20240905171818\\\",\\\"ch_order_no\\\":\\\"4200002343202409054135987205\\\",\\\"payer_account\\\":\\\"oAVOM66NoYTRffX5xzQn-b1qDeWw\\\",\\\"out_trade_no\\\":\\\"WL17255278474579124128\\\",\\\"total_amount\\\":1,\\\"reserved\\\":\\\"\\\",\\\"ch_out_trade_no\\\":\\\"5297116834240905\\\",\\\"trade_status\\\":\\\"SUCCESS\\\",\\\"pay_channel\\\":\\\"WX\\\",\\\"payer_id\\\":\\\"oAVOM66NoYTRffX5xzQn-b1qDeWw\\\"}\",\"method\":\"trade.order.notify\",\"app_id\":\"A17222309452323464\",\"version\":\"1.0.1\",\"sign_type\":\"RSA2\",\"timestamp\":\"20240905171818\"}\n```\n\n\n","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2024-09-06T09:09:08+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\"charset\":\"UTF-8\",\"req_data\":\"{\\\"order_no\\\":\\\"1010371122024090517172764265\\\",\\\"pay_scene\\\":\\\"H5\\\",\\\"order_desc\\\":\\\"\\u6d4b\\u8bd5\\u8ba2\\u5355\\u6807\\u9898\\\",\\\"order_name\\\":\\\"\\u6d4b\\u8bd5\\u8ba2\\u5355\\u6807\\u9898\\\",\\\"pay_time\\\":\\\"20240905171818\\\",\\\"ch_order_no\\\":\\\"4200002343202409054135987205\\\",\\\"payer_account\\\":\\\"oAVOM66NoYTRffX5xzQn-b1qDeWw\\\",\\\"out_trade_no\\\":\\\"WL17255278474579124128\\\",\\\"total_amount\\\":1,\\\"reserved\\\":\\\"\\\",\\\"ch_out_trade_no\\\":\\\"5297116834240905\\\",\\\"trade_status\\\":\\\"SUCCESS\\\",\\\"pay_channel\\\":\\\"WX\\\",\\\"payer_id\\\":\\\"oAVOM66NoYTRffX5xzQn-b1qDeWw\\\"}\",\"method\":\"trade.order.notify\",\"app_id\":\"A17222309452323464\",\"version\":\"1.0.1\",\"sign_type\":\"RSA2\",\"timestamp\":\"20240905171818\"}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"http://devsdkapi.7dgame.cn/v1.pay_notify/alipayAop.html":{"post":{"x-target-id":"3baee91","x-protocol":"http","summary":"支付回调 - 支付宝","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2023-08-14T13:46:45+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"gmt_create":{"type":"text","description":"","example":"2023-08-07 16:26:00"},"charset":{"type":"text","description":"","example":"utf-8"},"seller_email":{"type":"text","description":"","example":"qmwhadmin@163.com"},"subject":{"type":"text","description":"","example":"产品名称"},"sign":{"type":"text","description":"","example":"jrRjPlHFOK1BoQGPE07FE+svNjtmgRs9OlKqbIYZOo+E8rO/mAmk9ASEcqQZW3SV1QzCTBaTkLgzng0S0GMEodOdG931VP2u+ArGxPynVftWPMg330crFGOOR8AKbHT2nQFvLbrxEA9KayeEq8mq7HdLK9zlyCcN9oKsCAQjWz3AwG2rwnRTSLnbX2TIaaWC5lFPoGxD43saoD+QAcY+5D7K24vI55iAF9ixj8GmPV1vjr1e9KMahrcSnLaDYjLOeOe1BBjKOcZJj/GnkQieIYfekyaOqSlVp9uK/Rnqffou3i3GSlKRTBhzM890l1a+oK6u3+eLc3F00DPpqD2N7w=="},"buyer_id":{"type":"text","description":"","example":"2088022151356531"},"invoice_amount":{"type":"text","description":"","example":"1.00"},"notify_id":{"type":"text","description":"","example":"2023080701222162601056531467068182"},"fund_bill_list":{"type":"text","description":"","example":"[{\"amount\":\"1.00\"\"fundChannel\":\"ALIPAYACCOUNT\"}]"},"notify_type":{"type":"text","description":"","example":"trade_status_sync"},"trade_status":{"type":"text","description":"","example":"TRADE_SUCCESS"},"receipt_amount":{"type":"text","description":"","example":"1.00"},"buyer_pay_amount":{"type":"text","description":"","example":"1.00"},"app_id":{"type":"text","description":"","example":"2021004105643269"},"sign_type":{"type":"text","description":"","example":"RSA2"},"seller_id":{"type":"text","description":"","example":"2088641611414941"},"gmt_payment":{"type":"text","description":"","example":"2023-08-07 16:26:00"},"notify_time":{"type":"text","description":"","example":"2023-08-07 16:26:01"},"version":{"type":"text","description":"","example":"1.0"},"out_trade_no":{"type":"text","description":"","example":"WL16913967441018177818"},"total_amount":{"type":"text","description":"","example":"1.00"},"trade_no":{"type":"text","description":"","example":"2023080722001456531416072437"},"auth_app_id":{"type":"text","description":"","example":"2021004105643269"},"buyer_logon_id":{"type":"text","description":"","example":"ahj***@163.com"},"point_amount":{"type":"text","description":"","example":"0.00"}},"required":["gmt_create","charset","seller_email","subject","sign","buyer_id","invoice_amount","notify_id","fund_bill_list","notify_type","trade_status","receipt_amount","buyer_pay_amount","app_id","sign_type","seller_id","gmt_payment","notify_time","version","out_trade_no","total_amount","trade_no","auth_app_id","buyer_logon_id","point_amount"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.is_identity/isVerified.html":{"post":{"x-target-id":"3baee98","x-protocol":"http","summary":"是否已经实名认证(登陆+发起充值都先调用)","description":"","tags":["祈盟SDK/游戏API/手机号注册+登陆","祈盟SDK/游戏API/登陆流程","SDK-H5/注册&登录","祈盟SDK/游戏API/账户密码注册+登陆"],"x-mark-id":"1","x-updated-at":"2023-08-17T16:12:44+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"appid":{"type":"text","description":"","example":"232"},"channel_id":{"type":"text","description":"","example":"100"},"gameid":{"type":"text","description":"","example":"244"},"imeil":{"type":"text","description":"","example":"00000000-1645-d5b5-ffff-ffffef05ac4a"},"oaid":{"type":"text","description":"","example":""},"sign":{"type":"text","description":"","example":"6363844ac2f44ede50a690a3938a3882"},"token":{"type":"text","description":"","example":"J3YrYmrn7cOLBjYqNDWxt3uqI1z8Fn7o0T7vo8ijtRinSIB9LEnKs4TypuUwVWtu57cRBzyrPMENiRRVGBsw4/W9ol0"}},"required":["appid","channel_id","gameid","imeil","oaid","sign","token"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"已经实名认证成功\",\n\t\"time\": \"1691464710\",\n\t\"data\": {\n\t\t\"isVerified\": 1\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.pay/index.html":{"post":{"x-target-id":"3baee9b","x-protocol":"http","summary":"3. 发起支付(购买道具)","description":"","tags":["祈盟SDK/游戏API/游戏内发起支付","SDK-H5/SDK/支付(游戏)"],"x-mark-id":"1","x-updated-at":"2025-02-27T17:40:07+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"amount":{"type":"string","description":"订单金额(元)","example":"1.1"},"coin_amt":{"type":"string","description":"有使用平台币时,平台币金额","example":"0.1"},"paytype":{"type":"string","description":"支付方式:代金卷=coupon;专属平台币=ptb;平台币=coinpay;ybzf_wxmp_h5=易宝微信; qzl_wx_h5=趣智连微信;ldys_wx=联动微信小程序;","example":"coupon"},"attach":{"type":"string","description":"订单号","example":"@guid()"},"oaid":{"type":"string","description":"","example":""},"os_version":{"type":"string","description":"","example":"10"},"phone_brand":{"type":"string","description":"","example":"HONOR"},"phone_model":{"type":"string","description":"","example":"HLK-AL10"},"productname":{"type":"string","description":"","example":"产品名称"},"roleid":{"type":"string","description":"","example":"id1"},"rolelevel":{"type":"string","description":"角色等级","example":"99"},"rolename":{"type":"string","description":"","example":"龙天1"},"serverid":{"type":"string","description":"","example":"服务器id"},"servername":{"type":"string","description":"","example":"区服名称"}},"required":["amount","ptb_amt","coin_amt","paytype","appid","attach","coupon_member_id","imeil","oaid","os_version","phone_brand","phone_model","productname","roleid","rolelevel","rolename","serverid","servername","sign","discount"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"订单生成成功\",\n\t\"time\": \"1692005438\",\n\t\"data\": {\n\t\t\"alipay_param\": {\n\t\t\t\"mweb_url\": \"
\",\n\t\t\t\"referer\": \"com.yiyou.zfb\"\n\t\t},\n\t\t\"pay_status\": 0,\n\t\t\"orderid\": \"WL16920054382752188912\",\n\t\t\"channel_id\": 50,\n\t\t\"pay_type\": 1\n\t}\n}"}}},"404":{"description":"wx-wap","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"订单生成成功\",\n\t\"time\": \"1697252383\",\n\t\"data\": {\n\t\t\"wxpayh5_param\": {\n\t\t\t\"prepay_id\": \"wx141059434841288f654131587938a80000\",\n\t\t\t\"trade_type\": \"MWEB\",\n\t\t\t\"mweb_url\": \"https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx141059434841288f654131587938a80000&package=3617808074\",\n\t\t\t\"referer\": \"http://sdkapi.qmgames.cn\"\n\t\t},\n\t\t\"pay_status\": 0,\n\t\t\"orderid\": \"WL16972523832503460503\",\n\t\t\"channel_id\": 5215\n\t}\n}"}}}}}},"/v2.coin/pay":{"post":{"x-target-id":"3bca75f","x-protocol":"http","summary":"4. 发起充值(平台币)","description":"","tags":["祈盟SDK/游戏API/祈盟发起充值","SDK-H5/我的/充值(平台币)"],"x-mark-id":"1","x-updated-at":"2024-12-13T11:29:10+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"accountType":{"type":"string","description":"","example":"1"},"amount":{"type":"string","description":"","example":"1"},"paytype":{"type":"string","description":"","example":"wxmp_h5"},"user_name":{"type":"string","description":"","example":"13121776520"}},"required":["accountType","amount","paytype","user_name"]}}}},"responses":{"200":{"description":"易宝-微信支","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"订单生成成功\",\n\t\"time\": \"1699263671\",\n\t\"data\": {\n\t\t\"wxpayh5_param\": {\n\t\t\t\"mweb_url\": \"https://img.yeepay.com/fe-resources/html/redirectTest.html?redirectUrl=https%3A%2F%2Fyunkaifa-3g2vwjqcc619b454-1316336225.tcloudbaseapp.com%2Fjump-mp-v1.html%3Fstate%3Dfefb0d2f-2d4a-4b59-b54e-5b691df27b4d%26customerNo%3D10089612548%26goodsName%3D%25E5%25B9%25B3%25E5%258F%25B0%25E5%25B8%2581%26customerRequestNo%3D12320231106A8501699263671216%26orderAmount%3D10.00\"\n\t\t},\n\t\t\"orderid\": \"COIN16992636711201412113\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.order/getMemberCoinList":{"post":{"x-target-id":"3c2a6a8","x-protocol":"http","summary":"平台币明细-列表","description":"","tags":["祈盟SDK/SDK/个人中心","SDK-H5/我的/充值(平台币)"],"x-mark-id":"1","x-updated-at":"2024-06-15T16:30:43+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"month":{"type":"string","description":"","example":""},"oaid":{"type":"string","description":"","example":""},"page":{"type":"string","description":"","example":"1"},"pageSize":{"type":"string","description":"","example":"20"},"sign":{"type":"string","description":"","example":"7706e9be839d88c18f1447d61e8453f6"},"type":{"type":"string","description":"","example":"0"},"username":{"type":"string","description":"","example":"13121776520"}},"required":["month","oaid","page","pageSize","sign","token","type","username"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"v2.privacy/privacy":{"post":{"x-target-id":"3c749e0","x-protocol":"http","summary":"用户协议","description":"","tags":["祈盟SDK/SDK/其他"],"x-mark-id":"1","x-updated-at":"2023-08-22T17:33:16+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.register/index.html":{"post":{"x-target-id":"3c7d6a7","x-protocol":"http","summary":"手机号注册","description":"","tags":["祈盟SDK/游戏API/手机号注册+登陆","祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/手机注册","SDK-H5/注册&登录/账户注册"],"x-mark-id":"1","x-updated-at":"2023-08-17T16:06:13+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"oaid":{"type":"string","description":"","example":""},"os_version":{"type":"string","description":"","example":"10"},"password":{"type":"string","description":"","example":"123456"},"phone_brand":{"type":"string","description":"","example":"HUAWEI"},"phone_model":{"type":"string","description":"","example":"GLK-AL00"},"sign":{"type":"string","description":"","example":"dfa94aa4d257a163d2311b57b9686101"},"sms_code":{"type":"string","description":"","example":"458495"},"type":{"type":"string","description":"","example":"mobile"},"username":{"type":"string","description":"","example":"13136147501"}},"required":["appid","channel_id","device","gameid","imeil","oaid","os_version","password","phone_brand","phone_model","sign","sms_code","type","username"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"注册成功!\",\n\t\"time\": \"1692259117\",\n\t\"data\": {\n\t\t\"token\": \"J3YrYmrn7cOLBjMrN2nhsyj8dQmoHSu 1mjvo8ijtBynSIB9LU7MsIXypOQwVWpq57cRBzyqOMF8l0FZTRgDzvW9ol0\",\n\t\t\"username\": \"13136147501\",\n\t\t\"sub_username\": \"103493\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.user/getBindPhoneCode":{"post":{"x-target-id":"3c7eb11","x-protocol":"http","summary":"绑定手机号-获取验证码","description":"","tags":["祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/账户注册/绑定手机号","SDK-H5/我的/绑定手机号/换绑手机号","SDK-H5/我的/绑定手机号/绑定手机号"],"x-mark-id":"1","x-updated-at":"2024-12-11T10:18:05+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"captcha":{"type":"string","description":"","example":"89p13"},"oaid":{"type":"string","description":"","example":""},"phone":{"type":"string","description":"","example":"13136147501"},"random":{"type":"string","description":"","example":"eb55f905cbd4220b3c06b0e995a441d41_wen"},"sign":{"type":"string","description":"","example":"eb7e5afac0ff18116f5ce36534afdcc4"},"token":{"type":"string","description":"","example":"{{auth_token}}"},"type":{"type":"string","description":"","example":"1"}},"required":["appid","captcha","channel_id","gameid","imeil","oaid","phone","random","sign","token","type"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\"code\":1,\"msg\":\"发送成功\",\"time\":\"1733883397\",\"data\":[]}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.send_sms/index.html":{"post":{"x-target-id":"3c8d946","x-protocol":"http","summary":"发送短信验证码","description":"","tags":["祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/手机注册","祈盟SDK/游戏API/手机号注册+登陆"],"x-mark-id":"1","x-updated-at":"2023-10-20T16:47:50+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"mobile":{"type":"text","description":"","example":"13136147501"},"action":{"type":"text","description":"","example":"register"},"captcha":{"type":"text","description":"","example":"89p13"},"random":{"type":"text","description":"","example":"eb55f905cbd4220b3c06b0e995a441d41_wen"},"aes_key":{"type":"text","description":"","example":"{{aes_key}}"}},"required":["appid","mobile","action","captcha","random","aes_key"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/Index/wen_test":{"post":{"x-target-id":"400c258","x-protocol":"http","summary":"接口测试专用","description":"","tags":["API"],"x-mark-id":"1","x-updated-at":"2024-04-28T11:04:15+08:00","x-updated-user-name":"wen","parameters":[{"name":"a","in":"query","description":"","required":true,"example":"xxx","schema":{"type":"string"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"open_id":{"type":"string","description":"","example":"o0jap60RiBbxuKoiM1tWm2oyurxU"}},"required":["username","token","open_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"\",\n\t\"time\": \"1692259118\",\n\t\"data\": {\n\t\t\"isLoginPopup\": 3\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.pay_notify_coin/ybzf_pay.html":{"post":{"x-target-id":"403cab7","x-protocol":"http","summary":"充值回调","description":"","tags":["API/支付回调/易宝支付"],"x-mark-id":"1","x-updated-at":"2023-10-10T16:52:38+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"returncode":{"type":"string","description":"返回代码 例:0000 代表成功 其他为失败","example":"0000"},"returnmsg":{"type":"string","description":"返回消息 例: 成功","example":"成功"},"orderno":{"type":"string","description":"订单号","example":"COIN16969278274230244299"},"paytime":{"type":"string","description":"支付时间 例:202209181022","example":"202209181022"},"payno":{"type":"string","description":"系统号","example":"111111"},"paytype":{"type":"string","description":"支付类型 1 支付宝 2 微信 3银联快捷 4小程序 5服务窗 6APP 7钱包","example":"1"},"productprice":{"type":"string","description":"商品价格 单位:分","example":"100"},"sign":{"type":"string","description":"MD5(paytime=xxx|orderno=xxxxx|payno=xxxx|paytype=xxx|productprice=xxxx|商户密钥)","example":"3b8d2ffe36bce4406288ced3d186c6ed"},"transactionId":{"type":"string","description":"交易ID","example":"996001"},"userId":{"type":"string","description":"用户ID","example":"1001"}},"required":["returncode","returnmsg","orderno","paytime","payno","paytype","productprice","sign","transactionId","userId"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"success"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.complex_login/index.html":{"post":{"x-target-id":"408a32b","x-protocol":"http","summary":"2. 登陆","description":"## 渠道接入说明\n- 渠道名: 接收参数1=传递参数名1, 接收参数2=传递参数名2, ...n\n- 爱游: channel_token=token, user_id=userID\n- 骐麟: channel_token=token, username=username\n- 易优: channel_token=token, username=username\n- 聚乐:username=username, channel_token=accountSign, account=account\n- 当乐:user_id = umid\n- 神起:channel_token = token","tags":["祈盟SDK/聚合渠道","SDK-H5/聚合渠道"],"x-mark-id":"1","x-updated-at":"2024-11-29T14:15:57+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"channel_mark":{"type":"string","description":"渠道标识","example":"shenqi"},"username":{"type":"string","description":"渠道方:用户渠道ID/账号","example":"wen_001"},"channel_token":{"type":"string","description":"渠道方token","example":"bd32a95373869be3347cd8091641e845"},"qmversion":{"type":"string","description":"渠道加固-IOS专用参数(有这个参数用于判断是否开启)","example":"2"}},"required":["channel_mark","device","ext","username","channel_token","user_id","extparam","jg_key","qmversion"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"登录成功\",\n\t\"time\": \"1706251665\",\n\t\"data\": {\n\t\t\"user_id\": \"25066\",\n\t\t\"username\": \"weilian___25066z\", // 提供给渠道方的用户标识\n\t\t\"token\": \"J3YrYmrn7cOLBmIpNDDhtXz9dgysSCzqgTnqoc+i8VyzHN09dyei24b1oOA2G25q5/VJUWbiYuIQrEEGHV0I2bqKtVcnnJTSJiW4\",\n\t\t\"logintime\": 1706251665,\n\t\t\"sign\": \"93d3a962944f08491e2cc7d4a930bbd8\",\n\t\t\"extparam\": \"\"\n\t}\n}"}}},"404":{"description":"聚乐","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"登录成功\",\n\t\"time\": \"1709275720\",\n\t\"data\": {\n\t\t\"username\": \"jule___4248z\",\n\t\t\"token\": \"J3YrYmrn7cOLBjAnZmax5yynKg77HH3qhTvqoc+v8UWuFdYTQSfJtob/7ql9VyMw7upEa1fMP497yw9IXxkjnN6/r3tsjZM\",\n\t\t\"logintime\": 1709275720,\n\t\t\"sign\": \"194de27a803dabc1b0a9634f99cdb8f5\",\n\t\t\"extparam\": \"\"\n\t}\n}"}}}}}},"/v1.complex_pay/index.html":{"post":{"x-target-id":"408a609","x-protocol":"http","summary":"3. 发起下单","description":"","tags":["祈盟SDK/聚合渠道","SDK-H5/聚合渠道","SDK-H5/聚合渠道/发起下单-范例"],"x-mark-id":"1","x-updated-at":"2024-08-14T16:19:54+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"serverid":{"type":"string","description":"游戏服务器id","example":"1"},"roleid":{"type":"string","description":"角色id","example":"dangle___4262z"},"rolename":{"type":"string","description":"角色名","example":"角色名"},"amount":{"type":"string","description":"充值金额","example":"1"},"attach":{"type":"string","description":"一般为订单编号","example":"@guid()"},"channel_mark":{"type":"string","description":"渠道标识","example":"youxiyou"},"userid":{"type":"string","description":"","example":"4262"}},"required":["serverid","roleid","rolename","amount","attach","channel_mark","userid"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"订单生成成功\",\n\t\"time\": \"1716566303\",\n\t\"data\": {\n\t\t\"username\": \"qilin1000915z\",\n\t\t\"orderid\": \"CMWL17165663033854470382\"\n\t}\n}"}}},"404":{"description":"三九-昆顿","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"订单生成成功\",\r\n\t\"time\": \"1717144021\",\r\n\t\"data\": {\r\n\t\t\"username\": \"wen_001\",\r\n\t\t\"orderid\": \"CMWL17171440213052468677\",\r\n\t\t\"extend\": {\r\n\t\t\t\"product_money_mark\": \"sanjiu_kdzz_0000006\", // 渠道方配置的产品标识\r\n\t\t\t\"money\": \"0.06\"\r\n\t\t}\r\n\t}\r\n}"}}}}}},"/v2.coupon/exchangeCoupon":{"post":{"x-target-id":"408cfcf","x-protocol":"http","summary":"代金券码兑换","description":"","tags":["祈盟SDK/SDK/代金券","SDK-H5/我的/代金卷"],"x-mark-id":"1","x-updated-at":"2024-04-12T11:49:29+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"code":{"type":"string","description":"","example":"Q20240412114706JnTZg0jc470433A"},"oaid":{"type":"string","description":"","example":""},"sign":{"type":"string","description":"","example":"be18ae869540dd4e523db25ef93222df"},"token":{"type":"string","description":"","example":"J3YrYmrn7cOLBmImbTC353j+cV/+HX3o2G3vo8iiuh+nSIZ/K03JvYXxp+QwVWtj57cRBz2kO8EJgSdZeVxK1/W9ol0"},"username":{"type":"string","description":"","example":"13121776520"}},"required":["code","oaid","sign","token","username"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"{{api_url}}v1.startup/index.html":{"post":{"x-target-id":"40dd958","x-protocol":"http","summary":"每日游戏启动时设备信息收集","description":"","tags":["祈盟SDK/SDK"],"x-mark-id":"1","x-updated-at":"2023-10-19T09:52:16+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.order/orderInfo":{"post":{"x-target-id":"42af170","x-protocol":"http","summary":"订单详情","description":"","tags":["祈盟SDK/SDK/个人中心","SDK-H5/我的/订单"],"x-mark-id":"1","x-updated-at":"2024-06-15T17:06:39+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"string","description":"订单号","example":"WL17160443563389906407"},"type":{"type":"string","description":"支付类型: 1=游戏充值、2=平台币充值","example":"1"}},"required":["orderid","type"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.system_message/read":{"post":{"x-target-id":"4343ca8","x-protocol":"http","summary":"全部已读","description":"","tags":["祈盟SDK/SDK/个人中心/系统消息"],"x-mark-id":"1","x-updated-at":"2023-11-18T11:05:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.game_notify/getPackage":{"post":{"x-target-id":"4577c05","x-protocol":"http","summary":"申请最新游戏包分包","description":"","tags":["祈盟SDK/SDK/个人中心/公告&强更"],"x-mark-id":"1","x-updated-at":"2023-12-14T10:28:55+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"string","description":"游戏的强更号","example":"10"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"提交成功!\",\n\t\"time\": \"1702520871\",\n\t\"data\": \"\"\n}"}}},"404":{"description":"已是最新版本","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"已是最新版本!\",\n\t\"time\": \"1702520919\",\n\t\"data\": \"\"\n}"}}}}}},"/v2.user/getYqlChannel":{"post":{"x-target-id":"4ca6d39","x-protocol":"http","summary":"获取176的渠道推广信息","description":"","tags":["祈盟SDK/SDK/其他","祈盟SDK/游戏API","SDK-H5/其他"],"x-mark-id":"1","x-updated-at":"2024-04-23T18:38:23+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"channel_id":{"type":"string","description":"渠道ID","example":"5215"}},"required":["channel_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"success\",\n\t\"time\": \"1713359944\",\n\t\"data\": {\n\t\t\"tg_url\": \"http://devh5.176park.com/?cid=87de67454ecc3c66d024f440d02b51e8\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 0,\n\t\"msg\": \"无\",\n\t\"time\": \"1713360036\",\n\t\"data\": []\n}"}}}}}},"/YqlData/notifyChannel":{"post":{"x-target-id":"4ce7387","x-protocol":"http","summary":"176通知渠道绑定","description":"","tags":["API/176 API"],"x-mark-id":"1","x-updated-at":"2024-04-02T15:43:16+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_id":{"type":"string","description":"","example":"5215"}},"required":["channel_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"message\": \"success\",\n\t\"data\": []\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 0,\n\t\"message\": \"缺少渠道ID!\",\n\t\"data\": []\n}"}}}}}},"/YqlData/getCouponReceive":{"post":{"x-target-id":"4db0d1f","x-protocol":"http","summary":"代金券领取","description":"","tags":["API/176 API"],"x-mark-id":"1","x-updated-at":"2024-04-28T11:04:14+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"coupon_id":{"type":"string","description":"176用户代金卷ID","example":"2"},"coupon_name":{"type":"string","description":"代金卷昵称","example":"测试-代金卷1"},"max":{"type":"string","description":"满","example":"1"},"min":{"type":"string","description":"减","example":"1"},"gid":{"type":"string","description":"指定游戏ID(0=不限)","example":"10"},"username":{"type":"string","description":"用户名(祈盟位唯一标识)","example":"13121776520"},"sign":{"type":"string","description":"线上测试","example":"623d27007e06ee17983abb4c4ad1675d"}},"required":["coupon_id","coupon_name","max","min","gid","username","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"message\": \"代金卷领取成功!\",\n\t\"data\": {\n\t\t\"code\": \"YQL20240410104956dK3uCYSA130512Q\",\n\t\t\"code_id\": \"31\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/mp/get_pay":{"post":{"x-target-id":"4f501e6","x-protocol":"http","summary":"联动优势-发起下单","description":"","tags":["API/第三方平台"],"x-mark-id":"1","x-updated-at":"2024-05-11T18:40:49+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"open_id":{"type":"string","description":"","example":"o0jap60RiBbxuKoiM1tWm2oyurxU"},"order_id":{"type":"string","description":"","example":"WL17154114286218198335"},"pay_type":{"type":"string","description":"","example":"wxmp"}},"required":["open_id","order_id","pay_type"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/mp/get_article_list":{"get":{"x-target-id":"5005e79","x-protocol":"http","summary":"文章列表","description":"","tags":["API/第三方平台"],"x-mark-id":"1","x-updated-at":"2024-05-10T15:33:58+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.complex_pay_notify/notify/sanjiu/gameidqf/10":{"post":{"x-target-id":"51eb76d","x-protocol":"http","summary":"三九互娱-渠道回调","description":"","tags":["祈盟SDK/聚合渠道/聚合游戏回调","SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2024-06-03T15:57:13+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"net_status\": \"WIFI\",\r\n\t\"server_name\": \"区服名称\",\r\n\t\"app_version\": \"1\",\r\n\t\"bundleid\": \"com.qimeng.channel\",\r\n\t\"unix_name\": \"产品名称\",\r\n\t\"sign\": \"9218599D095E70EFDB9FF394D3311E1C\",\r\n\t\"role_level\": \"1\",\r\n\t\"package_id\": \"14821\",\r\n\t\"channel_version\": \"9.9.8\",\r\n\t\"uuid\": \"\",\r\n\t\"mac\": \"0\",\r\n\t\"platform\": \"2\",\r\n\t\"product_desc\": \"产品描述\",\r\n\t\"device_name\": \"GLK-AL00\",\r\n\t\"role_id\": \"202005201314\",\r\n\t\"product_id\": \"sanjiu_kdzz_0000100\",\r\n\t\"juhesdk_version\": \"5.0.3\",\r\n\t\"idfv\": \"\",\r\n\t\"channel_userid\": \"0\",\r\n\t\"wifi_ssid\": \"0\",\r\n\t\"idfa\": \"\",\r\n\t\"product_num\": \"1\",\r\n\t\"server_id\": \"1\",\r\n\t\"version\": \"10\",\r\n\t\"role_name\": \"龙天\",\r\n\t\"app_name\": \"channelSdk\",\r\n\t\"net_isp\": \"UNKNOWN\",\r\n\t\"money\": \"1\",\r\n\t\"extends\": \"\",\r\n\t\"user_id\": \"231971664\",\r\n\t\"app_build_version\": \"1.0\",\r\n\t\"cp_order_id\": \"CMWL17174002974091640934\",\r\n\t\"imei\": \"dad55fca2b3cd65b\",\r\n\t\"device_user_name\": \"unknown\",\r\n\t\"ip\": \"183.156.238.137\",\r\n\t\"ext\": \"0\",\r\n\t\"juhe_order_id\": \"jh751-17df1664e288f7\",\r\n\t\"is_sandbox\": \"0\",\r\n\t\"real_money\": \"1\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.complex_pay_notify/notify/youxiyou/gameidqf/10":{"post":{"x-target-id":"556edd0","x-protocol":"http","summary":"游戏友-渠道回调","description":"","tags":["祈盟SDK/聚合渠道/聚合游戏回调","SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2024-08-15T11:09:08+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"game_order\": \"CMWL17236895060589121213\",\r\n\t\"out_trade_no\": \"SP_20240815103826WTgd\",\r\n\t\"pay_extra\": \"youxiyou.cn\",\r\n\t\"pay_status\": \"1\",\r\n\t\"price\": \"0.01\",\r\n\t\"user_id\": \"2018988\",\r\n\t\"sign\": \"c784bdf14be864a55c18254d9491adb5\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.CheckUpdate/version.html":{"post":{"x-target-id":"6f1ef3e724004","x-protocol":"http","summary":"安卓-热更新(客户端小文件更新)(进入游戏时)","description":"","tags":["SDK-H5/公共"],"x-mark-id":"1","x-updated-at":"2025-02-28T16:37:42+08:00","x-updated-user-name":"wen","parameters":[],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"version_num":{"type":"string","description":"当前客户端版本号的构造号","example":"48"}},"required":["phone_brand","phone_model","platform","sign","version_num","version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.game_notify/index_v2":{"post":{"x-target-id":"71499da724062","x-protocol":"http","summary":"【准备弃用】游戏公告&强更&分包更新-v2","description":"安卓 = 登录后调用。\nIOS = 进入游戏时调用。\n\n弹框优先级:强更》公告》时效公告;\n\n\n\n```json\n- 接口返回内容范例:\n{\n \"code\": 1,\n \"msg\": \"已是最新版本\",\n \"time\": \"1702523406\",\n \"data\": {\n // 公告详情\n \"notify\": [\n {\n \"id\": 12,\n \"title\": \"母包安卓-强更\",\n \"content\": \"强更,666
\",\n \"notify_type\": 3\n }\n ],\n \"type\": 3, // 类型:0=无、1=公告、2=广告、3=强更、4=时效性公告;\n \"status\": 2, // 状态:0=无、1=已是最新版本(无用)、2=已是最新版本(可以强更)、3=获取最新分包(请求分包)、4=分包更新中(请求中)、5=分包失败(重新提交分包)\n \"url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/657a684e90088.apk\" // 强更地址(强更时才返回)\n }\n}\n```","tags":["SDK-H5/公共","祈盟SDK/SDK/个人中心/公告&强更","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2026-01-13T13:53:51+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"integer","description":"游戏的强更号(默认=0)","example":"60"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"有强更","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"已是最新版本\",\n\t\"time\": \"1702523406\",\n\t\"data\": {\n\t\t\"notify\": [\n\t\t\t{\n\t\t\t\t\"id\": 12,\n\t\t\t\t\"title\": \"母包安卓-强更\",\n\t\t\t\t\"content\": \"强更,666
\",\n\t\t\t\t\"notify_type\": 3\n\t\t\t}\n\t\t],\n\t\t\"type\": 3,\n\t\t\"status\": 2,\n\t\t\"url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/657a684e90088.apk\"\n\t}\n}"}}},"404":{"description":"无更新","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"无\",\n\t\"time\": \"1702523457\",\n\t\"data\": {\n\t\t\"notify\": [],\n\t\t\"type\": 0,\n\t\t\"status\": 0,\n\t\t\"url\": \"\"\n\t}\n}"}}}}}},"/Live_grad/userCreate":{"post":{"x-target-id":"7e4c8617f6882","x-protocol":"http","summary":"创建渠道【直播平台使用】","description":"","tags":["CPS后台"],"x-mark-id":"1","x-updated-at":"2026-05-25T10:31:13+08:00","x-updated-user-name":"wen","parameters":[{"name":"cookie","in":"header","description":"","required":true,"example":"PHPSESSID=b6fc9fee81671b7c95ea7f90972206a1; Admin-Token=b6fc9fee81671b7c95ea7f90972206a1","schema":{"type":"string"}}],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel":{"type":"string","description":"","example":"","default":""},"level":{"type":"string","description":"","example":"1"}},"required":["channel","level"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/gh/get_pay_list":{"post":{"x-target-id":"87616f23f6464","x-protocol":"http","summary":"获取订单列表数据","description":"展示所有调节的数据,没有限制“直播平台所属渠道”;\n\n```json\n{\n \"code\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"total\": 22, // 总数\n \"per_page\": \"3\", // 每页数量\n \"current_page\": 1, // 当前页数\n \"last_page\": 8, // 总分页数\n \"data\": [\n {\n \"id\": 605613,\n \"order_id\": \"WL17804754516429412399\",\n \"account\": \"vagy9bq\",\n \"game_id\": \"899\",\n \"game_name\": \"神陵武装(0.05折专服)(安卓)\",\n \"channel_id\": 10098,\n \"channel_name\": \"qmsy00498-1\",\n \"pay_method\": \"喜钛游-微信\",\n \"real_amount\": 4.99,\n \"pay_amount\": \"4.99\",\n \"coupon_member_id\": 0,\n \"coupon_amount\": \"0.00\",\n \"discount\": \"0.01\",\n \"recharge_amount\": 998,\n \"real_ptb\": \"0.00\",\n \"role_id\": \"407857242547957596\",\n \"role_name\": \"随风户外\",\n \"server_name\": \"深渊24服\",\n \"create_time\": \"2026-06-03 16:30:51\",\n \"pay_time\": \"2026-06-03 16:31:17\",\n \"paytype\": \"xty_wx_h5\",\n \"client_type\": 1,\n \"pay_form\": 4, // 订单类型: 1=普通单、2=平台币、3=代金卷、4=折扣\n }\n ],\n \"total_amount\": 1948.58 // 所有订单金额汇总\n }\n}\n```\n\n返回数据中 data.data 下的参数说明:\n```php\n// 注释参数是备用的,后续有需要可以随时开放。\n...\n->where($where)\n->field([\n 'cp.id',\n 'cp.orderid as order_id', // 订单号 - 0\n 'cp.username as account', // 账号 - 2\n // 'cm.nickname', // 昵称\n\n 'cp.gameid as game_id', // 游戏ID - 1\n 'cg.name as game_name', // 游戏名\n\n 'nc.id as channel_id', // 推广员ID - 13\n 'nc.name as channel_name', // 推广员名称\n // 'p1.id as business_id', // 子会长ID\n // 'p1.name as business_name', // 子会长名称\n // 'p2.id as sub_president_id', // 会长ID\n // 'p2.name as sub_president_name', // 会长名称\n\n // 'ns.create_time reg_time', // 注册时间\n // 'ns.update_time as login_time', // 登录时间\n\n 'cp.paytype as pay_method', // 支付方式 - 10\n // 'cp.real_amount as pay_amount', // 支付金额(人民币部分) - 9 - 删掉\n 'cp.real_amount', // 第三方支付金额(可能为空,因为有平台币支付)\n 'cp.pay_amount', // 实付金额(不会有空,订单支付价格,处理过折扣、代金卷)\n\n // ## 代金卷 ##\n 'cp.coupon_member_id', // 代金券ID\n 'cp.coupon_amount', // 抵扣代金券\n // ## 折扣 ##\n 'cp.discount', // 游戏折扣\n\n 'cp.amount as recharge_amount', // 订单金额 - 5\n 'cp.real_coin as real_ptb', // 平台币 - 6\n // 'cp.status as delivery_status', // 发货状态:0=未支付、1=已支付发货\n 'cp.roleid as role_id', // 角色ID - 21\n 'cp.rolename as role_name', // 角色名 - 17\n 'cp.servername as server_name', // 区服名 - 19\n 'FROM_UNIXTIME(cp.create_time, \"%Y-%m-%d %H:%i:%s\") as create_time', // 下单时间\n 'FROM_UNIXTIME(cp.pay_time, \"%Y-%m-%d %H:%i:%s\") as pay_time', // 支付时间 - 26\n 'paytype', // 支付方式\n 'client_type', // 客户端类型(1=祈盟sdk, 2=巨量, 3=快手磁力包)\n])\n->order('cp.id desc')\n->each(function($item, $key) use ($payTypeList){\n $item['pay_method'] = $payTypeList[$item['pay_method']] ?? $item['pay_method'];\n\n // ## 订单类型: 1=普通单、2=平台币、3=代金卷、4=折扣\n $pay_type = 1;\n if($item['real_ptb'] > 0){\n $pay_type = 2;\n } elseif ($item['coupon_member_id'] > 0 && $item['coupon_amount'] > 0){\n $pay_type = 3;\n } elseif ($item['discount'] > 0){\n $pay_type = 4;\n }\n\n $item['pay_form'] = $pay_type;\n return $item;\n});\n```\n","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-06-16T17:49:49+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"time_type":{"type":"integer","description":"时间类型:1=下单时间、2=支付时间","example":"1","default":"1"},"start_time":{"type":"string","description":"开始时间(`年-月-日 时-分-秒`)","example":"2026-06-16 11:00:00"},"end_time":{"type":"string","description":"结束时间(`年-月-日 时-分-秒`)","example":"2026-06-16 23:59:59"},"sign":{"type":"string","description":"sign","example":"63d5f69f7d39cced910e82cbbc22e79e"},"page":{"type":"integer","description":"分页页码(默认1)","example":"1"},"limit":{"type":"integer","description":"每页数量(默认100)","example":"10","default":"100"}},"required":["time_type","start_time","end_time","sign","limit"]}}}},"responses":{"200":{"description":"成功-type=1","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 200,\r\n\t\"msg\": \"success\",\r\n\t\"data\": {\r\n\t\t\"total\": 3,\r\n\t\t\"per_page\": \"3\",\r\n\t\t\"current_page\": 1,\r\n\t\t\"last_page\": 1,\r\n\t\t\"data\": [\r\n\t\t\t{\r\n\t\t\t\t\"id\": 1228,\r\n\t\t\t\t\"order_id\": \"WL17751118534127436425\",\r\n\t\t\t\t\"account\": \"13121776520\",\r\n\t\t\t\t\"game_id\": \"10\",\r\n\t\t\t\t\"game_name\": \"母包ANDROID\",\r\n\t\t\t\t\"channel_id\": 5215,\r\n\t\t\t\t\"channel_name\": \"test_c\",\r\n\t\t\t\t\"pay_method\": \"喜钛游-微信\",\r\n\t\t\t\t\"pay_amount\": 0.01,\r\n\t\t\t\t\"coupon_amount\": \"0.00\",\r\n\t\t\t\t\"recharge_amount\": 0.01,\r\n\t\t\t\t\"real_ptb\": \"0.00\",\r\n\t\t\t\t\"role_id\": \"id1\",\r\n\t\t\t\t\"role_name\": \"龙天1\",\r\n\t\t\t\t\"server_name\": \"区服名称\",\r\n\t\t\t\t\"pay_time\": \"2026-04-02 14:37:33\",\r\n\t\t\t\t\"client_type\": 3\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": 1226,\r\n\t\t\t\t\"order_id\": \"WL17739883921260156833\",\r\n\t\t\t\t\"account\": \"13121776520\",\r\n\t\t\t\t\"game_id\": \"10\",\r\n\t\t\t\t\"game_name\": \"母包ANDROID\",\r\n\t\t\t\t\"channel_id\": 5215,\r\n\t\t\t\t\"channel_name\": \"test_c\",\r\n\t\t\t\t\"pay_method\": \"喜钛游-微信\",\r\n\t\t\t\t\"pay_amount\": 0.01,\r\n\t\t\t\t\"coupon_amount\": \"0.00\",\r\n\t\t\t\t\"recharge_amount\": 0.01,\r\n\t\t\t\t\"real_ptb\": \"0.00\",\r\n\t\t\t\t\"role_id\": \"id1\",\r\n\t\t\t\t\"role_name\": \"龙天1\",\r\n\t\t\t\t\"server_name\": \"区服名称\",\r\n\t\t\t\t\"pay_time\": \"2026-04-02 14:37:09\",\r\n\t\t\t\t\"client_type\": 1\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": 1227,\r\n\t\t\t\t\"order_id\": \"WL17751118278535219207\",\r\n\t\t\t\t\"account\": \"13121776520\",\r\n\t\t\t\t\"game_id\": \"10\",\r\n\t\t\t\t\"game_name\": \"母包ANDROID\",\r\n\t\t\t\t\"channel_id\": 5215,\r\n\t\t\t\t\"channel_name\": \"test_c\",\r\n\t\t\t\t\"pay_method\": \"喜钛游-微信\",\r\n\t\t\t\t\"pay_amount\": 0.01,\r\n\t\t\t\t\"coupon_amount\": \"0.00\",\r\n\t\t\t\t\"recharge_amount\": 0.01,\r\n\t\t\t\t\"real_ptb\": \"0.00\",\r\n\t\t\t\t\"role_id\": \"id1\",\r\n\t\t\t\t\"role_name\": \"龙天1\",\r\n\t\t\t\t\"server_name\": \"区服名称\",\r\n\t\t\t\t\"pay_time\": \"2026-04-02 14:37:07\",\r\n\t\t\t\t\"client_type\": 2\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"total_amount\": 0\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.pay_notify/qzl_pay.html":{"post":{"x-target-id":"14ce86ee3f6f78","x-protocol":"http","summary":"趣智连-支付回调","description":"","tags":["SDK-H5/SDK/支付回调","API/回调","API/支付回调/趣智连"],"x-mark-id":"1","x-updated-at":"2026-06-01T18:02:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"ifCode\": \"yeeh5pay\",\r\n\t\"amount\": \"1\",\r\n\t\"payOrderId\": \"P2061385185190981633\",\r\n\t\"extParam\": \"\",\r\n\t\"mchOrderNo\": \"WL17803075011896409072\",\r\n\t\"subject\": \"产品名称-bid-oZWN77VP0Gh6RWhGEYGQ7v5AorqM\",\r\n\t\"wayCode\": \"WX_H5\",\r\n\t\"sign\": \"A318162ECA7A588DBEA8BCDAD246C474\",\r\n\t\"channelOrderNo\": \"4200003130202606017489902761\",\r\n\t\"reqTime\": \"1780307512121\",\r\n\t\"body\": \"产品名称-fee-0\",\r\n\t\"createdAt\": \"1780307501492\",\r\n\t\"appId\": \"6a1d48ade4b0f9cfdc9820d8\",\r\n\t\"clientIp\": \"47.97.190.250\",\r\n\t\"successTime\": \"1780307512000\",\r\n\t\"currency\": \"cny\",\r\n\t\"state\": \"2\",\r\n\t\"mchNo\": \"M1780304045\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/gh/channel_data_summary":{"post":{"x-target-id":"17517bee7f6085","x-protocol":"http","summary":"获取渠道数据汇总(弃用)","description":"\n```json\n{\n \"code\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"type_id\": 2,\n \"game_id\": 550, // 游戏ID\n \"game_name\": \"问山海(安卓)\", // 游戏名\n \"channel_id\": 10019, // 渠道ID\n \"channel_name\": \"qmsy00237t101-5\", // 渠道名\n \"reg_num\": 234, // 新增玩家\n \"role_num\": 260, // 新增角色\n \"act_num\": 301, // 活跃玩家\n \"recharge_num\": \"1550.00\", // 充值金额\n \"pay_num\": 47, // 付费人数\n }\n ]\n}\n```","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-02-03T11:41:07+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"日期时间","example":"2026-01-11"},"timestamp":{"type":"string","description":"请求时间戳","example":"1765850279"},"sign":{"type":"string","description":"sign","example":"caa67845c059263a4ccba7a20edef3bc"}},"required":["timestamp","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 200,\r\n \"msg\": \"success\",\r\n \"data\": [\r\n {\r\n \"type_id\": 2,\r\n \"game_id\": 550,\r\n \"game_name\": \"问山海(安卓)\",\r\n \"channel_id\": 10019,\r\n \"channel_name\": \"qmsy00237t101-5\",\r\n \"reg_num\": 234,\r\n \"role_num\": 260,\r\n \"act_num\": 301,\r\n \"recharge_num\": \"1550.00\",\r\n \"pay_num\": 47\r\n }\r\n ]\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.Gift/getMyGiftList":{"post":{"x-target-id":"1bf75c8db7d1e7","x-protocol":"http","summary":"我的礼包列表","description":"","tags":["祈盟SDK/SDK/礼包","SDK-H5/我的/礼包"],"x-mark-id":"1","x-updated-at":"2025-03-28T13:18:21+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"page":{"type":"string","description":"","example":"1"},"pageSize":{"type":"string","description":"","example":"10"},"type":{"type":"string","description":"","example":"1"},"username":{"type":"string","description":"","example":"3r413w"}},"required":["page","pageSize","type","username"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"发送成功\",\r\n \"time\": \"1733553148\",\r\n \"data\": {\r\n \"total\": 1,\r\n \"per_page\": \"10\",\r\n \"current_page\": 1,\r\n \"last_page\": 1,\r\n \"data\": [\r\n {\r\n \"id\": 42,\r\n \"gameid\": \"10,20\",\r\n \"title\": \"测试礼包\",\r\n \"content\": \"测试礼包,礼包测试,测试领取\",\r\n \"total\": 4,\r\n \"used\": 1,\r\n \"starttime\": \"2024-12-07 00:00:00\",\r\n \"endtime\": \"2024-12-31 23:59:59\",\r\n \"description\": \"\",\r\n \"consume\": \"0.00\",\r\n \"code\": \"111\",\r\n \"update_time\": \"2024-12-07 14:31:32\",\r\n \"name\": \"母包ANDROID 母包IOS\",\r\n \"mobileicon\": \"https:\\/\\/sdkdevdown.qmgames.cn\\/image\\/game\\/icons\\/2023091416266502c3cc46898.png\"\r\n }\r\n ]\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.Gift/giftPack":{"post":{"x-target-id":"1c1bef61f7d210","x-protocol":"http","summary":"领取礼包","description":"","tags":["祈盟SDK/SDK/礼包","SDK-H5/我的/礼包"],"x-mark-id":"1","x-updated-at":"2025-03-28T13:19:19+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"","example":"3"}},"required":["id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"领取成功!\",\r\n\t\"time\": \"1733553092\",\r\n\t\"data\": {\r\n\t\t\"code\": \"111\"\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.Is_Identity/isLoginPopup.html":{"post":{"x-target-id":"20481fdff7d058","x-protocol":"http","summary":"登录后,是否实名认证登录弹窗","description":"isLoginPopup = SDK登录完成后,是否弹出实名认证:可设置关闭(1)、开启(2)、强制开启 (3)(可设置字段值为1-3)","tags":["SDK-H5/注册&登录","祈盟SDK/游戏API/手机号注册+登陆","祈盟SDK/游戏API/账户密码注册+登陆"],"x-mark-id":"1","x-updated-at":"2026-06-10T16:45:09+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"\",\n\t\"time\": \"1692259118\",\n\t\"data\": {\n\t\t\"isLoginPopup\": 3\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.user/newImeilValid":{"post":{"x-target-id":"2105d517fcc101","x-protocol":"http","summary":"验证验证码","description":"","tags":["SDK-H5/注册&登录/新设备判断"],"x-mark-id":"1","x-updated-at":"2026-06-24T14:44:04+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"code":{"type":"string","description":"短信验证码","example":"508584"}},"required":["code"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"success\",\r\n \"time\": \"1746768875\",\r\n \"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 0,\r\n \"msg\": \"短信验证码不存在,请先发送\",\r\n \"time\": \"1746769009\",\r\n \"data\": \"\"\r\n}"}}}}}},"/v2.Captcha/getCaptcha":{"get":{"x-target-id":"21077b1637d074","x-protocol":"http","summary":"图形码获取","description":"\ntype=1:\n```json\n{\n\t\"code\": 1,\n\t\"msg\": \"success\",\n\t\"data\": {\n\t\t\"img_str\": \"iVBORw0KGgoAAAANS...CYII=\", // 图片base64字符串\n\t\t\"random\": \"eb55f905cbd4220b3c06b0e995a441d41\" // 图片标识\n\t}\n}\n```","tags":["SDK-H5/公共","SDK-H5/注册&登录/账户注册/绑定手机号","祈盟SDK/游戏API/手机号注册+登陆","祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/手机注册","SDK-H5/注册&登录/忘记密码","SDK-H5/我的/绑定手机号/绑定手机号","SDK-H5/注册&登录/新设备判断"],"x-mark-id":"1","x-updated-at":"2026-06-15T10:12:22+08:00","x-updated-user-name":"wen","parameters":[{"name":"type","in":"query","description":"验证码返回类型:1=返回json, 2=返回图片","required":true,"example":"1","schema":{"type":"string"}},{"name":"random","in":"query","description":"32位随机码(推荐:字母+数字)","required":true,"example":"eb55f905cbd4220b3c06b0e995a441d41_wen","schema":{"type":"string","default":"eb55f905cbd4220b3c06b0e995a441d41_wen"}}],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{},"required":[""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"success\",\r\n \"data\": {\r\n \"img_str\": \"iVBORw0KGgoAAAANSUhEUgAAASwAAABLBAMAAAA41acQAAAAIVBMVEXz+\\/6CMX3k4e3WyN2eY52sfK3Ir826lr2QSo2MQ4m2j7k9xrQWAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAD9UlEQVRoge1ZPVfbMBSVEjCMUhOCxwBtYCT0QDvGS7uS0xYYkw4dOvHZw4h7ymnW\\/uP6PflDsp8jOXFSTo\\/vgtGHdXXv05OsMNagQYMGDRo0aNCgQYMG\\/zO4FNY2B2vgYYILaecV7HxdBxcNQnIpLW3aUsqP\\/XWwScA5yGVptBHRktdr4RNDCJArCjAFutEQqvq1jtva3397zFpnx2Qt5ygXY9IK+8KoAjBg1A5KPBAA0IhbaZXhy11\\/AVrbUc\\/zsZQTshbVwqeFac3BHIFBhgdZEhoc5UrbrRmBLAtmkYi1Grms6JawYiKn9HpV26EjC4jZkGWt+mnt0mo5sCrNWsOlSe18uyVZgVxWWgE9q1aIr\\/799h7\\/mnkxTErmsfKJuQKKkUUANkT5VCzfSF2YwsPIoAwlPZ19jgU2eFXKilcJLRPDVCSvMIaX0TpCtx5CkznOtWwrFi4ewvA+UY4qdPAxIxFjMyM6Vjp5aWPEFtKiB3dihcP3isUoSKwiNDGW+nZqK8rSPUZ6WhPg3S2h5ZQevHmh1c2YG7T2oHKSjB\\/hAgLQN3vvctJFJ1Zq4hOid+Yhxq9Ba5oan2TnHXOngeIeTcvNxGwEE3vZ8ttKlmSKseI5uLoe6hnB7N1hpItLhZZaiFFotW6VoJ18p87gKnIZmonTME9riEuCpOUeWiOiIg6f07CH2hgjYJz7yOQPRmb7UYtEwBSLKRcrhBZ1ssWgmUQR3VU56DytObtPM6hM88C70PB5rCZLBZeTiTey5PSBK3EElFC3ZNMscEpWQ+tRz7gBTiQ6ry\\/GSkUJVeGpOA\\/1oQcEJ8Cng+Cizw61rSKczWYTRu19y4VWvNd9COKRn5jlSNGlPoAlwcAltNhgTIdWvEGn6LNkozPgX35PnyfFdxRN5MzJRMZOn+nyTX145fNRTqDLk6jwdfwfdeIjlqJwY1WOG42BErQVZCX+xUkyL8WR1LyQuQTItRS8LL5\\/xkVKQcxY2mY0+Bz6JVcYBVqOFs7Dm4RV5k+kYPfHPpRRO0MReRfdkqkFh0qv3X5a0v51Rx0LnWk5pi0L2lfAIP8ezLRPbm\\/Ida6FVYSDcdEvTPuO9045WrWYCBgWv0Gn2dq0wnSxNlawl+ePY5gmHLvngqsuE6MzoJ\\/\\/BsU05drfcLE2Vqz9nLfLK8vpdlr1mVgE5nry1EFBd3GVrFSud\\/ZCpyXqM5HCTclhiIQ2A6crkcXhVbkuz2hxtxukxfHeNW0xw0WXK5Fl0JpVaJzSIu4ma4ZXoW3iotvd5NqQnJzFiiOrKmIX+YoXYlUoufA3gn9NxQCw4UL7jeBlAOQScuXrsDKi3YrzFxbxDO9Z4HfNfPFfuK6r2BXQe4YAAAAASUVORK5CYII=\",\r\n \"random\": \"eb55f905cbd4220b3c06b0e995a441d41\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.login/index.html":{"post":{"x-target-id":"2109978d77d095","x-protocol":"http","summary":"登陆","description":"","tags":["SDK-H5/注册&登录/账户登录","祈盟SDK/游戏API/登陆流程"],"x-mark-id":"1","x-updated-at":"2026-06-29T18:35:46+08:00","x-updated-user-name":"wen","parameters":[],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"13121776520, qmwen0708,15355497631,zbwviztb,qmtests","example":"yyqqqq"},"password":{"type":"string","description":"zbxvhhzd:o1c8z99j\nzbjbbxmv:vaxevk5c","example":"123456"}},"required":["username","password",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"登录成功\",\n\t\"time\": \"1691464526\",\n\t\"data\": {\n\t\t\"token\": \"J3YrYmrn7cOLBj8sY2Tl5i2sd134TSq51Wnvo8ijtRinSIB9LEnKs4TypuUwVWtu57cRBzyrPME/vixVGVg0yPW9ol0\",\n\t\t\"username\": \"13121776520\",\n\t\t\"sub_username\": \"103487\",\n\t\t\"offline_time\": null\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.user/updatePwd":{"post":{"x-target-id":"210b55ccb7d0b2","x-protocol":"http","summary":"密码修改","description":"","tags":["SDK-H5/我的"],"x-mark-id":"1","x-updated-at":"2024-12-18T15:13:11+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"oldpassword":{"type":"string","description":"老密码","example":"12345678"},"password":{"type":"string","description":"新密码","example":"123456"},"repassword":{"type":"string","description":"确认新密码","example":"123456"}},"required":["oldpassword","password","repassword"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"修改成功\",\r\n \"time\": \"1733884406\",\r\n \"data\": []\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/checkUnbindingPhoneCode":{"post":{"x-target-id":"210e9420f7d0d1","x-protocol":"http","summary":"旧手机号-效验验证码","description":"","tags":["SDK-H5/我的/绑定手机号/换绑手机号"],"x-mark-id":"1","x-updated-at":"2025-07-07T17:58:07+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"code":{"type":"string","description":"手机号验证码","example":"835710"}},"required":["code"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"发送成功\",\r\n\t\"time\": \"1733885323\",\r\n\t\"data\": {\r\n\t\t\"checkToken\": \"8d14fe957736163f80c93c7310f235a0\"\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/problem":{"post":{"x-target-id":"2112da83f7d107","x-protocol":"http","summary":"常见问题","description":"","tags":["SDK-H5/我的/客服中心","祈盟SDK/SDK/个人中心/客服"],"x-mark-id":"1","x-updated-at":"2025-10-10T10:38:19+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"page":{"type":"string","description":"","example":"1"},"pageSize":{"type":"string","description":"","example":"10"}},"required":["page","pageSize"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"获取成功\",\r\n\t\"time\": \"1733886243\",\r\n\t\"data\": {\r\n\t\t\"total\": 9,\r\n\t\t\"per_page\": \"10\",\r\n\t\t\"current_page\": 1,\r\n\t\t\"last_page\": 1,\r\n\t\t\"data\": [{\r\n\t\t\t\"id\": 52,\r\n\t\t\t\"title\": \"《魔龙世界》人工客服QQ群\",\r\n\t\t\t\"answer\": \"《魔龙世界》问题咨询,请添加QQ群:760231591。<\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 51,\r\n\t\t\t\"title\": \"帐号申诉\",\r\n\t\t\t\"answer\": \"