{"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![image.png](https://img.cdn.apipost.cn/client/user/205116/avatar/78805a221a988e79ef3f42d7c5bfd41866d9976c84de6.png \"image.png\")","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\": \"

当您忘记密码而且没有绑定手机\\/邮箱时,或者账号被盗时,可通过帐号申诉,提交您的个人资料及帐号使用信息来证明您是当前帐号的持有者。<\\/span><\\/p>

申诉由客服人员审核通过后,您即可根据系统提供的申诉编号和成功凭证,进入“申诉查询页面<\\/a>”<\\/span>进行重置密码。<\\/span><\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 49,\r\n\t\t\t\"title\": \"忘记密码怎么办\",\r\n\t\t\t\"answer\": \"

登录祈盟网络<\\/span><\\/span>帐号后,进入“个人中心—账号安全”,即可绑定或换绑手机和邮箱。<\\/span><\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 48,\r\n\t\t\t\"title\": \"如何绑定邮箱\",\r\n\t\t\t\"answer\": \"

登录祈盟网络<\\/span><\\/span>帐号后,进入“个人中心—账号安全”,即可绑定或换绑手机和邮箱。<\\/span><\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 47,\r\n\t\t\t\"title\": \"购买账号是否安全\",\r\n\t\t\t\"answer\": \"

祈盟网络<\\/span><\\/span>官方不支持帐号买卖、共享以及私下交易等行为,如您在此过程中出现任何纠纷,官方概不受理。另外,官方对账号归属判定仅通过账号相关的资料判定,且仅处理一次。<\\/span><\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 46,\r\n\t\t\t\"title\": \"忘记密码怎么办\",\r\n\t\t\t\"answer\": \"

如果帐号有绑定手机或邮箱,可以在登录页点击忘记密码,通过自助方式重置密码。<\\/p>

如果账号没有绑定手机或邮箱,可以进入“客服中心—帐号申诉 ”提交帐号问题。<\\/p>

<\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 45,\r\n\t\t\t\"title\": \"如何换绑手机\",\r\n\t\t\t\"answer\": \"

很抱歉,身份证信息一经登记无法修改哦,所以请认真填写。<\\/p>

实名认证方式:<\\/p>

1.登录任意游戏,点击悬浮框,可在“用户中心—实名认证”内进行填写;<\\/p>

2.登录祈盟网络<\\/span><\\/span>官网后,进入“个人中心—账号安全”内,进行实名认证。<\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 44,\r\n\t\t\t\"title\": \"账号注册\",\r\n\t\t\t\"answer\": \"

注册祈盟网络<\\/span>用户有两种方式,分为游戏注册与网站直接注册,通过祈盟网络<\\/span>网站注册或者下载游戏通过游戏注册账号<\\/p>

<\\/p>\"\r\n\t\t}, {\r\n\t\t\t\"id\": 43,\r\n\t\t\t\"title\": \"如何绑定或换绑手机和邮箱\",\r\n\t\t\t\"answer\": \"

登录祈盟网络<\\/span><\\/span>帐号后,进入“个人中心—账号安全”,即可绑定或换绑手机和邮箱。<\\/span><\\/p>\"\r\n\t\t}]\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.forget/forgetPwdToReset":{"post":{"x-target-id":"211b5ac037d173","x-protocol":"http","summary":"重置密码","description":"","tags":["SDK-H5/注册&登录/忘记密码"],"x-mark-id":"1","x-updated-at":"2026-06-17T15:11:46+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"password":{"type":"string","description":"新密码","example":"12345678"},"repassword":{"type":"string","description":"确认密码","example":"12345678"},"checkToken":{"type":"string","description":"效验接口的 check_token【v3.6.7以后版本】","example":"MTAzNDg3cW1zZGs="}},"required":["password","repassword","checkToken"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"密码重置成功\",\r\n \"time\": \"1751706297\",\r\n \"data\": []\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.coupon/getcoupon":{"post":{"x-target-id":"22a49fdd37d255","x-protocol":"http","summary":"可领取代金券-列表","description":"receive:1=未领取、2=已领取\n","tags":["SDK-H5/我的/代金卷","祈盟SDK/SDK/代金券"],"x-mark-id":"1","x-updated-at":"2024-12-26T13:44:02+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","gameid"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功\",\n\t\"time\": \"1697532922\",\n\t\"data\": {\n\t\t\"total\": 3,\n\t\t\"per_page\": \"10\",\n\t\t\"current_page\": 1,\n\t\t\"last_page\": 1,\n\t\t\"data\": [\n\t\t\t{\n\t\t\t\t\"id\": 34,\n\t\t\t\t\"name\": \"sdk-test-004\",\n\t\t\t\t\"game_id\": \"260,259,258,257,256,255,254,253,252,251,249,244,20,10\",\n\t\t\t\t\"money\": 1,\n\t\t\t\t\"min_money\": 0,\n\t\t\t\t\"grant_num\": 3,\n\t\t\t\t\"receive_num\": 0,\n\t\t\t\t\"use_num\": 0,\n\t\t\t\t\"type_id\": 1,\n\t\t\t\t\"day\": 0,\n\t\t\t\t\"start_time\": \"2023-10-16 00:00:00\",\n\t\t\t\t\"end_time\": \"2023-10-31 23:59:59\",\n\t\t\t\t\"state\": 1,\n\t\t\t\t\"is_examine\": 1,\n\t\t\t\t\"create_time\": \"2023-10-17 14:02:14\",\n\t\t\t\t\"update_time\": \"2023-10-17 14:02:14\",\n\t\t\t\t\"is_show\": 2,\n\t\t\t\t\"content\": \"sdk-test-004,可直接领取使用\",\n\t\t\t\t\"member_id\": 0,\n\t\t\t\t\"coupon_start_time\": null,\n\t\t\t\t\"coupon_end_time\": null,\n\t\t\t\t\"code\": null,\n\t\t\t\t\"receive\": 1,\n\t\t\t\t\"percentage\": 100,\n\t\t\t\t\"game_name\": \"秀逗军团(ios) 山海镜花(ios) 山海镜花(安卓) 国之战魂(安卓) 远征三国(安卓) 母包\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": 33,\n\t\t\t\t\"name\": \"sdk-test-003(审核)\",\n\t\t\t\t\"game_id\": \"260,259,258,257,256,255,254,253,252,251,249,244,20,10\",\n\t\t\t\t\"money\": 1,\n\t\t\t\t\"min_money\": 0,\n\t\t\t\t\"grant_num\": 3,\n\t\t\t\t\"receive_num\": 1,\n\t\t\t\t\"use_num\": 0,\n\t\t\t\t\"type_id\": 1,\n\t\t\t\t\"day\": 0,\n\t\t\t\t\"start_time\": \"2023-10-16 00:00:00\",\n\t\t\t\t\"end_time\": \"2023-10-31 23:59:59\",\n\t\t\t\t\"state\": 1,\n\t\t\t\t\"is_examine\": 2,\n\t\t\t\t\"create_time\": \"2023-10-17 15:35:40\",\n\t\t\t\t\"update_time\": \"2023-10-17 15:35:40\",\n\t\t\t\t\"is_show\": 2,\n\t\t\t\t\"content\": \"sdk-test-003(审核),领取后需要审核。\",\n\t\t\t\t\"member_id\": 103552,\n\t\t\t\t\"coupon_start_time\": 0,\n\t\t\t\t\"coupon_end_time\": 0,\n\t\t\t\t\"code\": \"Q20231017140101snTqlUFN190715\",\n\t\t\t\t\"receive\": 2,\n\t\t\t\t\"percentage\": 67,\n\t\t\t\t\"game_name\": \"秀逗军团(ios) 山海镜花(ios) 山海镜花(安卓) 国之战魂(安卓) 远征三国(安卓) 母包\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": 29,\n\t\t\t\t\"name\": \"SDK-测试-1\",\n\t\t\t\t\"game_id\": \"10\",\n\t\t\t\t\"money\": 1,\n\t\t\t\t\"min_money\": 0,\n\t\t\t\t\"grant_num\": 17,\n\t\t\t\t\"receive_num\": 13,\n\t\t\t\t\"use_num\": 0,\n\t\t\t\t\"type_id\": 2,\n\t\t\t\t\"day\": 20,\n\t\t\t\t\"start_time\": \"2023-10-14 00:00:00\",\n\t\t\t\t\"end_time\": \"2023-11-03 23:59:58\",\n\t\t\t\t\"state\": 1,\n\t\t\t\t\"is_examine\": 1,\n\t\t\t\t\"create_time\": \"2023-10-14 16:53:55\",\n\t\t\t\t\"update_time\": \"2023-10-14 16:53:55\",\n\t\t\t\t\"is_show\": 2,\n\t\t\t\t\"content\": \"11111\",\n\t\t\t\t\"member_id\": 103552,\n\t\t\t\t\"coupon_start_time\": 1697212800,\n\t\t\t\t\"coupon_end_time\": 1698940799,\n\t\t\t\t\"code\": \"Q20231014172505PDtOHFrG327790A\",\n\t\t\t\t\"receive\": 2,\n\t\t\t\t\"percentage\": 24,\n\t\t\t\t\"game_name\": \"母包\"\n\t\t\t}\n\t\t]\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.coin/payType":{"post":{"x-target-id":"22a4c4dcf7d258","x-protocol":"http","summary":"支付方式","description":"paytype = ybzf_wxmp_h5,zfb,old-zfb-wap,ybzf_wxmp_h5,zfb\npay_scene = wx_h5,ali_app,ali_h5_qr,wx_h5_qr,ali_app\n\n弹框二维码支付在原有H5支付类型中,复制出一份二维码支付(例如: ali_h5_qr,wx_h5_qr)\n\n```json\n{\n \"code\": 1,\n \"msg\": \"成功!!\",\n \"time\": \"1767668939\",\n \"data\": [\n {\n \"paytype\": \"ybzf_wxmp_h5\", // 支付标识\n \"payname\": \"微信\", // 支付名\n \"pay_scene\": \"wx_h5\", // 支付类型\n \"sort\": 1 // 排序\n },\n {\n \"paytype\": \"zfb\",\n \"payname\": \"支付宝(快捷)\",\n \"pay_scene\": \"ali_app\",\n \"sort\": 2\n },\n {\n \"paytype\": \"old-zfb-wap\",\n \"payname\": \"支付宝\",\n \"pay_scene\": \"ali_h5_qr\",\n \"sort\": 3\n },\n {\n \"paytype\": \"ybzf_wxmp_h5\",\n \"payname\": \"微信(扫码)\",\n \"pay_scene\": \"wx_h5_qr\",\n \"sort\": 4\n },\n {\n \"paytype\": \"zfb\",\n \"payname\": \"支付宝(扫码)\",\n \"pay_scene\": \"ali_app\",\n \"sort\": 5\n }\n ]\n}\n```","tags":["SDK-H5/我的/充值(平台币)","祈盟SDK/游戏API/祈盟发起充值"],"x-mark-id":"1","x-updated-at":"2026-01-06T13:45:39+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"is_simulator":{"type":"string","description":"是否模拟器(0=否、1=是)","example":"0","default":"0"}},"required":["is_simulator"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"成功!!\",\n\t\"time\": \"1767669117\",\n\t\"data\": [\n\t\t{\n\t\t\t\"paytype\": \"ybzf_wxmp_h5\",\n\t\t\t\"payname\": \"微信\",\n\t\t\t\"pay_scene\": \"wx_h5\",\n\t\t\t\"sort\": 1\n\t\t},\n\t\t{\n\t\t\t\"paytype\": \"zfb\",\n\t\t\t\"payname\": \"支付宝(快捷)\",\n\t\t\t\"pay_scene\": \"ali_app\",\n\t\t\t\"sort\": 2\n\t\t},\n\t\t{\n\t\t\t\"paytype\": \"old-zfb-wap\",\n\t\t\t\"payname\": \"支付宝\",\n\t\t\t\"pay_scene\": \"ali_h5_qr\",\n\t\t\t\"sort\": 3\n\t\t},\n\t\t{\n\t\t\t\"paytype\": \"ybzf_wxmp_h5\",\n\t\t\t\"payname\": \"微信(扫码)\",\n\t\t\t\"pay_scene\": \"wx_h5_qr\",\n\t\t\t\"sort\": 4\n\t\t},\n\t\t{\n\t\t\t\"paytype\": \"zfb\",\n\t\t\t\"payname\": \"支付宝(扫码)\",\n\t\t\t\"pay_scene\": \"ali_app\",\n\t\t\t\"sort\": 5\n\t\t}\n\t]\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.coupon/getMyCoupon":{"post":{"x-target-id":"22a853d977d277","x-protocol":"http","summary":"我的带金券-列表","description":"","tags":["SDK-H5/我的/代金卷","祈盟SDK/SDK/代金券"],"x-mark-id":"1","x-updated-at":"2025-09-09T10:10:23+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"type_id":{"type":"string","description":"类型:1=未使用,2=已使用,3=已失效","example":"1"},"page":{"type":"string","description":"","example":"1"},"pageSize":{"type":"string","description":"","example":"10"}},"required":["type_id","page","pageSize","gameid"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"获取成功\",\r\n \"time\": \"1733992660\",\r\n \"data\": {\r\n \"total\": 34,\r\n \"per_page\": \"10\",\r\n \"current_page\": 1,\r\n \"last_page\": 4,\r\n \"data\": [\r\n {\r\n \"id\": 296,\r\n \"code\": \"Q20241017105427lqqGYbKt138787A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 64,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-10-17 00:00:00\",\r\n \"end_time\": \"2024-10-18 00:00:00\",\r\n \"use_time\": \"2024-10-17 10:54:56\",\r\n \"update_time\": \"\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"10块\",\r\n \"money\": 10,\r\n \"min_money\": 1,\r\n \"coupon_start_time\": 0,\r\n \"coupon_end_time\": 0,\r\n \"type_id\": 1,\r\n \"game_id\": \"268\",\r\n \"coupon_state\": 1,\r\n \"content\": \"10块\",\r\n \"game_name\": \"切菜狂人(安卓)\"\r\n },\r\n {\r\n \"id\": 284,\r\n \"code\": \"Q20241014111523Fa06xe9E746850\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 61,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-10-14 00:00:00\",\r\n \"end_time\": \"2024-10-14 23:59:59\",\r\n \"use_time\": \"2024-10-14 14:47:39\",\r\n \"update_time\": \"2024-10-14 11:15:38\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"游戏注册账户送券\",\r\n \"money\": 3,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1728835200,\r\n \"coupon_end_time\": 1728921599,\r\n \"type_id\": 2,\r\n \"game_id\": \"268\",\r\n \"coupon_state\": 1,\r\n \"content\": \"游戏注册账户送券\",\r\n \"game_name\": \"切菜狂人(安卓)\"\r\n },\r\n {\r\n \"id\": 283,\r\n \"code\": \"Q20240907180751tZMycwtQ182184A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-09-07 00:00:00\",\r\n \"end_time\": \"2024-09-07 23:59:59\",\r\n \"use_time\": \"2024-09-07 18:08:21\",\r\n \"update_time\": \"2024-09-07 18:08:32\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1725638400,\r\n \"coupon_end_time\": 1725724799,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 282,\r\n \"code\": \"Q20240907180356cm5kQGaa323249A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-09-07 00:00:00\",\r\n \"end_time\": \"2024-09-07 23:59:59\",\r\n \"use_time\": \"2024-09-07 18:04:21\",\r\n \"update_time\": \"2024-09-07 18:04:31\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1725638400,\r\n \"coupon_end_time\": 1725724799,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 280,\r\n \"code\": \"Q20240905110922PWL4uWXQ138598A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-09-05 00:00:00\",\r\n \"end_time\": \"2024-09-05 23:59:59\",\r\n \"use_time\": \"2024-09-05 14:59:25\",\r\n \"update_time\": \"2024-09-05 14:59:35\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1725465600,\r\n \"coupon_end_time\": 1725551999,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 279,\r\n \"code\": \"Q20240905105809NCYPHp9b197601A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-09-05 00:00:00\",\r\n \"end_time\": \"2024-09-05 23:59:59\",\r\n \"use_time\": \"2024-09-05 11:08:40\",\r\n \"update_time\": \"\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1725465600,\r\n \"coupon_end_time\": 1725551999,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 277,\r\n \"code\": \"Q20240830170652ZpiWhmVk192820A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 60,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-08-29 00:00:00\",\r\n \"end_time\": \"2024-08-31 00:00:00\",\r\n \"use_time\": \"2024-08-30 17:17:24\",\r\n \"update_time\": \"\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"648测试\",\r\n \"money\": 648,\r\n \"min_money\": 1,\r\n \"coupon_start_time\": 0,\r\n \"coupon_end_time\": 0,\r\n \"type_id\": 1,\r\n \"game_id\": \"336,295,294,293,292,291,286,283,272,271,270,269,268,266,265,264,263,262,261,260,259,258,257,256,255,254,253,252,251,249,244,20,10\",\r\n \"coupon_state\": 1,\r\n \"content\": \"1211211\",\r\n \"game_name\": \"魔龙世界(安卓) 御剑红尘(安卓) 武道将魂(iOS) 武道将魂(安卓) 拂晓(iOS) 拂晓(安卓) 昆顿之杖(安卓) 昆顿之杖(iOS) 梦回仙灵(安卓) 全民江湖(ios) 全民江湖(安卓) 切菜狂人(ios) 切菜狂人(安卓) 仙剑奇侠传3D回合(安卓) 黑暗之潮:契约(ios) 黑暗之潮:契约(安卓) 狗狗呼叫喵星(IOS) 狗狗呼叫喵星(安卓) 秀逗军团(ios) 秀逗军团(安卓) 仙剑奇侠传3D回合(ios) 山海镜花(ios) 弃用2 金装裁决(安卓) 山海镜花(安卓) 侍忍者(安卓) 侍忍者(ios) 神兵奇迹(安卓) 神兵奇迹(ios) 国之战魂(安卓) 远征三国(安卓) 母包IOS 母包ANDROID\"\r\n },\r\n {\r\n \"id\": 224,\r\n \"code\": \"Q20240706143152do3SkFA3572264A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-07-06 00:00:00\",\r\n \"end_time\": \"2024-07-06 23:59:59\",\r\n \"use_time\": \"2024-07-06 15:12:06\",\r\n \"update_time\": \"2024-07-06 15:12:30\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1720195200,\r\n \"coupon_end_time\": 1720281599,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 222,\r\n \"code\": \"Q202407061427228g9oAPTY685663A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-07-06 00:00:00\",\r\n \"end_time\": \"2024-07-06 23:59:59\",\r\n \"use_time\": \"2024-07-06 14:27:46\",\r\n \"update_time\": \"\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1720195200,\r\n \"coupon_end_time\": 1720281599,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n },\r\n {\r\n \"id\": 221,\r\n \"code\": \"Q202407061421322evV62xw506472A\",\r\n \"member_id\": 103552,\r\n \"coupon_id\": 51,\r\n \"examine\": 2,\r\n \"is_use\": 3,\r\n \"state\": 1,\r\n \"start_time\": \"2024-07-06 00:00:00\",\r\n \"end_time\": \"2024-07-06 23:59:59\",\r\n \"use_time\": \"2024-07-06 14:22:01\",\r\n \"update_time\": \"\",\r\n \"remarks\": \"\",\r\n \"yql_id\": null,\r\n \"name\": \"仙剑一块\",\r\n \"money\": 1,\r\n \"min_money\": 0,\r\n \"coupon_start_time\": 1720195200,\r\n \"coupon_end_time\": 1720281599,\r\n \"type_id\": 2,\r\n \"game_id\": \"266,259\",\r\n \"coupon_state\": 1,\r\n \"content\": \"仙剑双端一块钱\",\r\n \"game_name\": \"仙剑奇侠传3D回合(安卓) 仙剑奇侠传3D回合(ios)\"\r\n }\r\n ],\r\n \"type_id\": \"2\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.coupon/receiveCoupon":{"post":{"x-target-id":"23d533abf7d314","x-protocol":"http","summary":"代金卷领取","description":"","tags":["SDK-H5/我的/代金卷"],"x-mark-id":"1","x-updated-at":"2025-07-04T13:27:54+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"代金卷ID","example":"69"}},"required":["id"]}}}},"responses":{"200":{"description":"已领取","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 0,\r\n\t\"msg\": \"已领取\",\r\n\t\"time\": \"1734071588\",\r\n\t\"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.order/cancelOrder":{"post":{"x-target-id":"24007edeb7d339","x-protocol":"http","summary":"取消订单","description":"","tags":["SDK-H5/我的/订单","SDK-H5/SDK/支付(游戏)","SDK-H5/我的/充值(平台币)","祈盟SDK/游戏API"],"x-mark-id":"1","x-updated-at":"2025-01-03T11:26:48+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"string","description":"订单号","example":"WL17358738020676127376"},"type":{"type":"string","description":"支付类型: 1=游戏充值, 2=平台币支付","example":"1"}},"required":["orderid","type"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/uploadFile":{"post":{"x-target-id":"2860baf9736084","x-protocol":"http","summary":"通用业务文件上传","description":"","tags":["相关说明/分包程序"],"x-mark-id":"1","x-updated-at":"2025-10-11T16:06:27+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","description":"上传文件","example":"C:\\Users\\Administrator\\Desktop\\test_game\\game_logo.jpg","format":"binary"},"business_type":{"type":"string","description":"文件用途","example":"customer"}},"required":["file","business_type","enable_compression","compression_quality","compression_scale"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"error_code\": 200,\r\n \"status\": \"success\",\r\n \"data\": {\r\n \"path\": \"sygame/customer/1760146772949.jpg\",\r\n \"url\": \"https://sdkdevdown.qmgames.cn/sygame/customer/1760146772949.jpg\"\r\n },\r\n \"message\": \"success\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.pay/querypay.html":{"post":{"x-target-id":"2a5548b637d44b","x-protocol":"http","summary":"订单信息查询","description":"## 返回参数说明:\n\nstatus(支付状态): 0=待支付, 1=已支付, 2=已取消, 3=超时取消","tags":["SDK-H5/SDK/支付(游戏)","祈盟SDK/游戏API"],"x-mark-id":"1","x-updated-at":"2026-03-18T09:32:27+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"string","description":"订单号(支付和充值的订单号不一样)","example":"WL17737966528829615875"}},"required":["orderid",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"订单查询成功\",\n\t\"time\": \"1773729981\",\n\t\"data\": {\n\t\t\"status\": 0\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 0,\n\t\"msg\": \"订单信息不存在\",\n\t\"time\": \"1734507755\",\n\t\"data\": \"\"\n}"}}}}}},"/game/getChannelOrGame":{"post":{"x-target-id":"2b8813dbb7d474","x-protocol":"http","summary":"获取渠道和游戏数据(H5)","description":"游戏地址案例:http://h5.newsdk.com/?c=6763c4efcd372\ncode = 渠道标识(URL参数的`c`参数)(分包标识)\ngame_url = H5游戏URL\nchannel_mark = 对接渠道标识(传参后返回 complex_info 信息)(默认complex_info下的参数都为空内容)\n\n\n```json\n{\n\t\"code\": 1,\n\t\"msg\": \"success\",\n\t\"time\": \"1758008377\",\n\t\"data\": {\n\t\t\"channel_id\": 300, // 渠道ID\n\t\t\"game_url\": \"http://localhost:5173/static/test.html\", // 游戏地址\n\t\t\"complex_info\": { // 渠道信息\n\t\t\t\"complex_channel_id\": 49,, // 渠道ID\n\t\t\t\"sdk\": \"https://sdkdevdown.newsdk.com/complex_sdk/simoh5_sdk.js\" // 渠道JS\n\t\t}\n\t}\n}\n```","tags":["SDK-H5/公共"],"x-mark-id":"1","x-updated-at":"2025-10-10T13:08:42+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"code":{"type":"string","description":"游戏分包标识(加密)","example":"67765f9c6fd15"},"gameid":{"type":"string","description":"游戏ID","example":"30"}},"required":["gameid"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"success\",\r\n \"time\": \"1758008933\",\r\n \"data\": {\r\n \"channel_id\": 300,\r\n \"game_url\": \"http:\\/\\/localhost:5173\\/static\\/test.html\",\r\n \"complex_info\": {\r\n \"complex_channel_id\": 49,\r\n \"sdk\": \"https:\\/\\/sdkdevdown.newsdk.com\\/complex_sdk\\/simoh5_sdk.js\"\r\n }\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 0,\r\n \"msg\": \"没有当前渠道信息!\",\r\n \"time\": \"1758008585\",\r\n \"data\": \"\"\r\n}"}}}}}},"/v1.complex_login/getSpecialParam":{"post":{"x-target-id":"2bbea2bc37d4a7","x-protocol":"http","summary":"1. 渠道效验(获取用户ID)","description":"## 渠道参数\n- 信游-参数:user_id = uid(客户端的uid)\n- 司墨-参数:user_id = uid, extparam = auth \n- 唯恋-参数:user_id = uid\n- 三九-参数:user_id = juhe_userid, channel_token = juhe_token, extparam = channel_userid\n- 乐岛参数:user_id = userID, channel_token = token\n- 爱游参数:user_id = userID, channel_token = token\n- 易优:username=渠道username, channel_token=渠道token\n- 当乐:user_id = umid, channel_token = access_token\n- 神起:channel_token = token\n- 九龙游戏 - jlyx:\n - 登录:channel_token = token\n - 下单-客户端请求渠道:extInfo=祈盟订单号\n- 贪乐(tlyx): \n - 登录: user_id = userId\n - 下单-客户端请求渠道: extension = 祈盟订单号(orderid)\n- 九辰(jcyx): username = username, channel_token = token, extparam = login_time\n- 快手(kuaishou): user_id = sdkUserId, channel_token = sdkToken\n- 霹雳(pili):user_id = mem_id, channel_token = user_token\n- 人人视频(rrtv):channel_token = sid\n- 游辰(youchen): user_id = user_id\n- 聚恒(juheng): username=username\n\n\n\n\n","tags":["SDK-H5/聚合渠道","祈盟SDK/聚合渠道","祈盟SDK/聚合渠道/渠道效验"],"x-mark-id":"1","x-updated-at":"2026-03-03T16:45:57+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_mark":{"type":"string","description":"渠道标识","example":"test"},"gameid":{"type":"string","description":"游戏ID","example":"10","default":""},"username":{"type":"string","description":"渠道方username(没有则穿 user_id参数)","example":"g2970865221"},"user_id":{"type":"string","description":"渠道方uid(没有则不传)","example":"uid_{{$mockjs.guid()}}","default":"{{$mockjs.guid()}}"},"extparam":{"type":"string","description":"扩展参数","example":"71GIthmbb\\/oqQmCg7hKdnknNh7KilkXL4d7IWckUV4Wd4a5wtyVtPSbaDf2HIsqopHO54zdwZuM2kvG_zVoUukSylusQdeLzpEommW45c6NBn5mncM4vsMg6Gv92ZerxiG3qhmYnjWFIcSmSG\\/hfYKO9QgV9tB76uANgYtBsveE="}},"required":["channel_mark","gameid","username","cappid","channel_token","user_id","extparam","qmKey","test"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功\",\n\t\"time\": \"1700632630\",\n\t\"data\": {\n\t\t\"cuserid\": \"60284\", // 获取的是渠道方的UID\n\t}\n}"}}},"404":{"description":"乐岛","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功\",\n\t\"time\": \"1717661811\",\n\t\"data\": {\n\t\t\"cuserid\": \"1552894105036521472\"\n\t}\n}"}}}}}},"/v1.complex_pay_notify/notify/shenqi/gameidqf/10":{"post":{"x-target-id":"2bbea2bc37d4af","x-protocol":"http","summary":"神起-渠道回调","description":"","tags":["SDK-H5/聚合渠道/聚合游戏回调-服务端","祈盟SDK/聚合渠道/聚合游戏回调"],"x-mark-id":"1","x-updated-at":"2026-05-28T16:39:45+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"appId\": \"yk0202kdzz\",\r\n \"cpOrderId\": \"CMWL17065856234382816292\",\r\n \"extension\": \"extension|data|test\",\r\n \"money\": \"1\",\r\n \"orderId\": \"yk0202kdzz_f2ebb07db0707e30\",\r\n \"productId\": \"商品id\",\r\n \"sign\": \"afa757ae2dfc97a6abff801fdecd1bde1\",\r\n \"userId\": \"451820590\",\r\n \"userName\": \"nil\",\r\n \"zoneId\": \"1\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.complex_pay_notify/notify/yueyou/gameidqf/10":{"post":{"x-target-id":"2bbea2bc37d4b0","x-protocol":"http","summary":"悦游-渠道回调","description":"","tags":["SDK-H5/聚合渠道/聚合游戏回调-服务端","祈盟SDK/聚合渠道/聚合游戏回调"],"x-mark-id":"1","x-updated-at":"2024-12-19T17:59:45+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"amount\": \"1.00\",\r\n \"appId\": \"1\",\r\n \"channelId\": \"1\",\r\n \"cpOrderId\": \"666666666666\",\r\n \"ext\": \"\",\r\n \"orderId\": \"123456789ooL\",\r\n \"result\": \"1\",\r\n \"timestamp\": \"1494221088\",\r\n \"userId\": \"12345\",\r\n \"sign\": \"f2b9cefc310a46e35c072f1d6da011ce\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.user/bindPhone":{"post":{"x-target-id":"2d2a2a57b5e721","x-protocol":"http","summary":"手机号绑定","description":"","tags":["SDK-H5/我的/绑定手机号/绑定手机号","祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/账户注册/绑定手机号"],"x-mark-id":"1","x-updated-at":"2025-07-07T16:39:12+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"type":{"type":"string","description":"类型:1=绑定手机号,2=找回密码","example":"1"},"phone":{"type":"string","description":"手机号","example":"13121776520"},"code":{"type":"string","description":"验证码","example":"683317"}},"required":["type","phone","code","password",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"绑定成功\",\n\t\"time\": \"1729675564\",\n\t\"data\": []\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.role/index.html":{"post":{"x-target-id":"30855f9d37d50d","x-protocol":"http","summary":"角色数据上传","description":"","tags":["SDK-H5/SDK/角色管理"],"x-mark-id":"1","x-updated-at":"2025-09-02T13:47:14+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"role_action":{"type":"string","description":"角色事件:create=创角, enter=进入服务器, up_level=角色升级","example":"up_level","default":"up_level"},"roleid":{"type":"string","description":"角色 ID","example":"{{login_username}}-0012","default":"{{login_username}}-001"},"rolename":{"type":"string","description":"角色名","example":"wen_0012"},"rolelevel":{"type":"string","description":"角色等级","example":"102"},"serverid":{"type":"string","description":"区服 ID","example":"10083"},"servername":{"type":"string","description":"区服名","example":"水瓶座3服"},"partyname":{"type":"string","description":"帮派/公会名","example":"","default":""},"viplevel":{"type":"string","description":"VIP 等级","example":"10","default":"10"},"rolebalance":{"type":"string","description":"游戏余额","example":"0"}},"required":["role_action","roleid","rolename","rolelevel","serverid","servername","partyname","viplevel","rolebalance"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.Third/getDyCode":{"post":{"x-target-id":"30a529937cc00b","x-protocol":"http","summary":"抖音游戏-获取access_token","description":"","tags":["SDK-H5/第三方/抖音平台"],"x-mark-id":"1","x-updated-at":"2025-07-29T15:20:36+08:00","x-updated-user-name":"wen","parameters":[],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"dy_app_id":{"type":"string","description":"","example":"721109"},"code":{"type":"string","description":"抖音授权code","example":"bbefc9d82e10ff19irNRjNfvnfedgFAkoBpE_hj","default":""}},"required":["dy_app_id","code"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"success\",\r\n \"time\": \"1747817103\",\r\n \"data\": {\r\n \"access_token\": \"act.3.C3BDLLblwrtfj6QM3RVbnMiMhwLlvwH6ioH-kkWyTvGipGv5rlTOTbiTvCFRZ6fO3sQkqjeIHDtlGSMInJH7k7qI2iG7g2ltjObnO7zrfAROO-J05EgdydC57lzSbfq4WGY7Iv9GRI4fZraXR2Cw9wmZ4tknGqF27WBvkg==_lf\",\r\n \"open_id\": \"_0003YHzVQz7jHbDlXzei6geJ0FR3hhRoVbQ\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 0,\r\n \"msg\": \"error\",\r\n \"time\": \"1747817264\",\r\n \"data\": \"请求失败:授权码过期-10007\"\r\n}"}}}}}},"/v1.role/update.html":{"post":{"x-target-id":"30be0367f7d543","x-protocol":"http","summary":"更新角色信息","description":"","tags":["祈盟SDK/游戏API/角色管理"],"x-mark-id":"1","x-updated-at":"2024-12-23T15:09:26+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"partyname":{"type":"string","description":"","example":""},"rolebalance":{"type":"string","description":"","example":"0"},"roleid":{"type":"string","description":"","example":"{{login_username}}-001"},"rolename":{"type":"string","description":"","example":"wen_001"},"rolelevel":{"type":"string","description":"","example":"102"},"serverid":{"type":"string","description":"","example":"id001"},"servername":{"type":"string","description":"区服名","example":"name001"},"viplevel":{"type":"string","description":"","example":"0"}},"required":["partyname","rolebalance","roleid","rolename","rolelevel","serverid","servername","viplevel"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"更新角色信息成功!\",\r\n \"time\": \"1734073599\",\r\n \"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.Third/getDyAuthInfoOpen":{"post":{"x-target-id":"32dc5857fcc0f5","x-protocol":"http","summary":"抖音游戏-查询绑定意愿","description":"","tags":["SDK-H5/第三方/抖音平台"],"x-mark-id":"1","x-updated-at":"2025-07-29T15:21:39+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"open_id":{"type":"string","description":"","example":"_0003YHzVQz7jHbDlXzei6geJ0FR3hhRoVbQ"}},"required":["open_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"success\",\r\n \"time\": \"1748051436\",\r\n \"data\": {\r\n \"base_resp\": {\r\n \"status_code\": 0,\r\n \"status_message\": \"\"\r\n },\r\n \"game2dy_bind_auth\": true // 用户是否同意进行账号绑定\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 0,\r\n \"msg\": \"error: access_token无效\",\r\n \"time\": \"1747965131\",\r\n \"data\": []\r\n}"}}}}}},"/v2.DyGameOpen/getMobileCode":{"post":{"x-target-id":"331b150a7cc192","x-protocol":"http","summary":"抖音-手机号发送验证码","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-23T16:56:15+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"app_id":{"type":"string","description":"抖音游戏 ID","example":"721109"},"phone_num":{"type":"string","description":"","example":"13121776520"}},"required":["app_id","phone_num"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"data\": \"\",\r\n \"err_no\": 0,\r\n \"err_msg\": \"success\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.DyGameOpen/getMobileCheck":{"post":{"x-target-id":"333da8e77cc1a7","x-protocol":"http","summary":"抖音-手机号验证码校验","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-24T17:36:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"app_id":{"type":"string","description":"抖音游戏 ID","example":"721109","default":""},"phone_num":{"type":"string","description":"手机号","example":"13121776520"},"captcha":{"type":"string","description":"手机号验证码","example":"759607"}},"required":["app_id","phone_num","captcha"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"data\": {\r\n \"game_user_id\": 103487,\r\n \"mask_account_number\": \"131****6520\"\r\n },\r\n \"err_no\": 0,\r\n \"err_msg\": \"success\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"err_no\": 4014457,\r\n \"err_msg\": \"短信验证码不存在,请先发送\"\r\n}"}}}}}},"/gh/channel_data_summary_v2":{"post":{"x-target-id":"33681553ff634b","x-protocol":"http","summary":"获取渠道数据汇总V2","description":"查询数据,限制必须是所属“直播平台归属”的限制;\n\n类型: 1=汇总, 2=详情\n\n```json\n{\n \"code\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"total\": 246, // 数据总数\n \"per_page\": 100, // 单页数量\n \"current_page\": 1, // 分页数\n \"last_page\": 3, // 最大页数\n \n // type=1\n \"data\": [\n {\n \"id\": 1810978,\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\": 300, // 活跃玩家\n \"pay_num\": 50, // 付费玩家\n \"recharge_num\": \"1550.00\", // 充值金额(字符串)\n \"new_act_num\": 10, // 新活跃玩家\n \"new_pay_num\": 3, // 新付费玩家\n \"new_recharge_num\": \"550.00\", // 新玩家付费金额(字符串)\n \"old_act_num\": 10, // 老活跃玩家\n \"old_pay_num\": 47, // 老付费玩家\n \"old_recharge_num\": \"1000.00\", // 老玩家付费金额(字符串)\n },\n ...\n ]\n\n // type=2\n \"data\": [\n {\n \"id\": 1810937,\n \"game_id\": 550, // 游戏ID\n \"game_name\": \"问山海(安卓)\", // 游戏名\n \"channel_id\": 10019, // 渠道ID\n \"channel_name\": \"qmsy00237t101-5\", // 渠道名\n \"reg_total\": 234, // 累计玩家总数\n \"reg_num\": 234, // 新玩家\n \"one_stay\": 234, // 次留\n \"three_stay\": 234, // 3留\n \"four_stay\": 234, // 4留\n \"five_stay\": 234, // 5留\n \"six_stay\": 234, // 6留\n \"seven_stay\": 234, // 7留\n \"fifteen_stay\": 234, // 15留\n \"thirty_stay\": 234, // 30留\n },\n ...\n ]\n }\n}\n```\n\n数据不为空判断条件:\n```php\n...\n->where(function ($query) use ($type) {\n // 非空条件:至少有一个字段不为空\n if($type == 1){\n $query->whereOr('crg.reg_num', '>', 0)\n ->whereOr('crg.role_num', '>', 0)\n ->whereOr('crg.act_num', '>', 0)\n ->whereOr('crg.recharge_num', '>', 0)\n ->whereOr('crg.pay_num', '>', 0)\n ->whereOr('crg.new_act_num', '>', 0)\n ->whereOr('crg.new_pay_num', '>', 0)\n ->whereOr('crg.new_recharge_num', '>', 0);\n }else{\n $query->whereOr('crg.reg_num', '>', 0)\n ->whereOr('crg.one_stay', '>', 0)\n ->whereOr('crg.three_stay', '>', 0)\n ->whereOr('crg.four_stay', '>', 0)\n ->whereOr('crg.five_stay', '>', 0)\n ->whereOr('crg.six_stay', '>', 0)\n ->whereOr('crg.seven_stay', '>', 0)\n ->whereOr('crg.fifteen_stay', '>', 0)\n ->whereOr('crg.thirty_stay', '>', 0);\n }\n})\n```\n\n三个老玩家数据计算逻辑展示:\n```php\n...\nforeach ($list as &$v){\n $old_recharge_num = $v['recharge_num'] - $v['new_recharge_num'];\n if($old_recharge_num <= 0){\n $old_recharge_num = \"0.00\";\n }\n $v['old_act_num'] = $v['act_num'] - $v['new_act_num'];\n $v['old_pay_num'] = $v['pay_num'] - $v['new_pay_num'];\n $v['old_recharge_num'] = sprintf(\"%.2f\", $old_recharge_num);\n}\n```\n","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-05-14T11:17:57+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"日期时间","example":"2026-05-11"},"timestamp":{"type":"integer","description":"请求时间戳","example":"1765850279"},"sign":{"type":"string","description":"sign","example":"2ff08f07c804d5261551b4d7a25fcfe9"},"page":{"type":"integer","description":"分页页码(默认1)","example":"1"},"list_rows":{"type":"integer","description":"每页数量(默认50)","example":"50"},"type":{"type":"integer","description":"类型: 1=汇总, 2=详情","example":"2"}},"required":["date","timestamp","sign","list_rows","type"]}}}},"responses":{"200":{"description":"成功-type=2","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 200,\r\n \"msg\": \"success\",\r\n \"data\": {\r\n \"total\": 80,\r\n \"per_page\": 2,\r\n \"current_page\": 1,\r\n \"last_page\": 40,\r\n \"data\": [\r\n {\r\n \"id\": 1810914,\r\n \"day\": \"2026-01-25\",\r\n \"game_id\": 646,\r\n \"game_name\": \"冒险之门(IOS)\",\r\n \"channel_id\": 10790,\r\n \"channel_name\": \"qmsy00516t12-1\",\r\n \"reg_total\": 6,\r\n \"reg_num\": 1,\r\n \"one_stay\": 1,\r\n \"three_stay\": 0,\r\n \"four_stay\": 0,\r\n \"five_stay\": 0,\r\n \"six_stay\": 0,\r\n \"seven_stay\": 0,\r\n \"fifteen_stay\": 0,\r\n \"thirty_stay\": 0\r\n },\r\n {\r\n \"id\": 1810915,\r\n \"day\": \"2026-01-25\",\r\n \"game_id\": 592,\r\n \"game_name\": \"无尽纷争(安卓)\",\r\n \"channel_id\": 10398,\r\n \"channel_name\": \"qmsy00518t1-1\",\r\n \"reg_total\": 84,\r\n \"reg_num\": 9,\r\n \"one_stay\": 6,\r\n \"three_stay\": 0,\r\n \"four_stay\": 0,\r\n \"five_stay\": 0,\r\n \"six_stay\": 0,\r\n \"seven_stay\": 0,\r\n \"fifteen_stay\": 0,\r\n \"thirty_stay\": 0\r\n }\r\n ]\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.game_notify/index_v3":{"post":{"x-target-id":"3fa734cb7f62bb","x-protocol":"http","summary":"游戏公告&强更&分包更新-v3","description":"安卓 = 登录后调用。\nIOS = 进入游戏时调用。\n\n弹框优先级:强更》公告》时效公告;\n\n\n\n```json\n- 接口 data 返回内容范例:\n{\n// 强更公告详情\n\"notify_qg\": {\n\t// 状态:0=无、1=已是最新版本(无用)、2=已是最新版本(可以强更)、3=获取最新分包(请求分包)、4=分包更新中(请求中)、5=分包失败(重新提交分包)\n\t\"status\": 2,\n\t// 强更地址(强更时才返回)\n\t\"url\": \"https:\\/\\/sdkdevdown.newsdk.com\\/sygame\\/mubaoANDROID\\/677e4bf25a34b.apk\",\n\t// 提示信息{当前状态的说明。例如:status = 状态:0=无、1=已是最新版本(无用)、2=已是最新版本(可以强更)、3=获取最新分包(请求分包)、4=分包更新中(请求中)、5=分包失败(重新提交分包)}\n\t\"msg\": \"下载最新包\",\n\n\t// 公告详情\n\t\"id\": \"\",\n\t\"title\": \"\",\n\t\"content\": \"<\\/head>

母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222母包强更。222\\\"logo.png\\\"\\/asdasd <\\/p>\"\n},\n\n// 单次公告详情\n\"notify_dc\": {\n\t// 公告详情\n\t\"id\": 76,\n\t\"title\": \"母包公告,11\",\n\t\"content\": \"<\\/head>

公告,,,2222222<\\/p>\"\n},\n// 时效公告详情\n\"notify_sx\": {\n\t// 公告详情\n\t\"id\": 84,\n\t\"title\": \"母包时效公告,安卓\",\n\t\"content\": \"<\\/head>

啊实打实大师大师大师大苏打说到期为期为期1啊撒大声地<\\/p>

\\\"game_logo.jpg\\\"\\/<\\/p>\"\n},\n\n// 扩展参数\n\"ext\": {\n\t\"game_version\": 45, // 游戏最新版本号\n\t\"channel_version\": 45, // 分包版本号\n\t\"client_channel_version\": \"44\" // 客户端传入的版本号\n}\n}\n```","tags":["SDK-H5/公共"],"x-mark-id":"1","x-updated-at":"2026-03-09T15:57:40+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"integer","description":"游戏的强更号(默认=0)","example":"1"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"无内容","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功!\",\n\t\"time\": \"1761708324\",\n\t\"data\": {\n\t\t\"notify_qg\": {\n\t\t\t\"status\": 0,\n\t\t\t\"url\": \"\",\n\t\t\t\"msg\": \"\",\n\t\t\t\"data\": []\n\t\t},\n\t\t\"notify_dc\": {\n\t\t\t\"data\": []\n\t\t},\n\t\t\"notify_sx\": {\n\t\t\t\"data\": []\n\t\t},\n\t\t\"ext\": {\n\t\t\t\"game_version\": 45,\n\t\t\t\"channel_version\": \"\",\n\t\t\t\"client_channel_version\": \"45\"\n\t\t}\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.complex_pay_notify/notify/channelqf/yehua/gameidqf/244":{"post":{"x-target-id":"3baee8f","x-protocol":"http","summary":"渠道回调 - 夜画","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2023-08-14T13:46:04+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"app":{"type":"string","description":"","example":"519"},"at":{"type":"string","description":"","example":"1691827746582"},"cbi":{"type":"string","description":"","example":""},"cn":{"type":"string","description":"","example":"0"},"fee":{"type":"string","description":"","example":"1"},"kr":{"type":"string","description":"","example":"9db8050ce"},"pt":{"type":"string","description":"","example":"9"},"res":{"type":"string","description":"","example":"0"},"st":{"type":"string","description":"","example":"1691827747679"},"tid":{"type":"string","description":"","example":"2527578"},"ud":{"type":"string","description":"","example":"CMWL16918277339427104106"},"uid":{"type":"string","description":"","example":"2077140"},"ver":{"type":"string","description":"","example":"1"},"sign":{"type":"string","description":"","example":"876c4ec399e1a4a1ef549895180fb5f4"},"channelqf":{"type":"string","description":"","example":"yehua"},"gameidqf":{"type":"string","description":"","example":"244"}},"required":["app","at","cbi","cn","fee","kr","pt","res","st","tid","ud","uid","ver","sign","channelqf","gameidqf"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.pay_notify/alipay.html":{"get":{"x-target-id":"3baee90","x-protocol":"http","summary":"支付宝回调(待使用)","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2023-08-14T13:47:42+08:00","x-updated-user-name":"wen","responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.startup/index.html":{"post":{"x-target-id":"3baee9e","x-protocol":"http","summary":"游戏启动信息收集(暂未发现使用)","description":"","tags":["祈盟SDK/游戏API"],"x-mark-id":"1","x-updated-at":"2023-11-06T16:27:14+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"os_version":{"type":"text","description":"","example":"10"},"phone_model":{"type":"text","description":"","example":"GLK-AL00"},"platform":{"type":"text","description":"","example":"0"}},"required":["appid","aes_key","gameid","channel_id","imeil","os_version","phone_model","platform"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"http://sdkapi.7dgames.cn/v1.pay/index.html":{"post":{"x-target-id":"3baeea2","x-protocol":"http","summary":"默认渠道的支付(还没了解)","description":"","tags":["祈盟SDK/SDK/其他"],"x-mark-id":"1","x-updated-at":"2023-08-08T10:48:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"appid":{"type":"text","description":"","example":"231"},"aes_key":{"type":"text","description":"","example":"erecNF1vp5Qphd8e"},"gameid":{"type":"text","description":"","example":"239"},"userid":{"type":"text","description":"","example":""},"serverid":{"type":"text","description":"","example":""},"servername":{"type":"text","description":"","example":""},"amount":{"type":"text","description":"","example":""},"roleid":{"type":"text","description":"","example":""},"attach":{"type":"text","description":"","example":""},"ptb_amt":{"type":"text","description":"","example":""},"imeil":{"type":"text","description":"","example":""},"productname":{"type":"text","description":"","example":""},"paytype":{"type":"text","description":"","example":""},"rolename":{"type":"text","description":"","example":""},"rolelevel":{"type":"text","description":"","example":""},"channel_id":{"type":"text","description":"","example":""},"sub_username":{"type":"text","description":"","example":""},"coin_amt":{"type":"text","description":"","example":""},"coupon_member_id":{"type":"text","description":"","example":""}},"required":["appid","aes_key","","gameid","userid","serverid","servername","amount","roleid","attach","ptb_amt","imeil","productname","paytype","rolename","rolelevel","channel_id","sub_username","coin_amt","coupon_member_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.user/userinfo":{"post":{"x-target-id":"3bb00da","x-protocol":"http","summary":"用户详情","description":"","tags":["祈盟SDK/游戏API","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2024-12-05T11:00:46+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"oaid":{"type":"string","description":"","example":""},"sign":{"type":"string","description":"","example":"d62cc212c101cbd749c03ccbd4fd334c"},"token":{"type":"string","description":"认证令牌","example":"{{auth_token}}"}},"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\": \"1691464605\",\n\t\"data\": {\n\t\t\"userInfo\": {\n\t\t\t\"mobile\": \"131****6520\",\n\t\t\t\"email\": \"\",\n\t\t\t\"nickname\": \"yiE103487\",\n\t\t\t\"username\": \"13121776520\",\n\t\t\t\"id\": 103487,\n\t\t\t\"realname\": \"五**\",\n\t\t\t\"idcard\": \"350*************12\",\n\t\t\t\"isVisitor\": \"已认证\"\n\t\t},\n\t\t\"m_url\": \"http://m.46yx.com/\",\n\t\t\"customer_service\": [\n\t\t\t{\n\t\t\t\t\"id\": 23,\n\t\t\t\t\"qq\": \"982023980\",\n\t\t\t\t\"nickname\": \"游戏客服\",\n\t\t\t\t\"time\": \"09:30-22:00\"\n\t\t\t}\n\t\t],\n\t\t\"is_mobile\": 1,\n\t\t\"system_message_count\": 0\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"v1.login/checkToken.html":{"post":{"x-target-id":"3e2acee","x-protocol":"http","summary":"自动登录(APP打开检测到有token时自动登陆)","description":"","tags":["祈盟SDK/游戏API","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2023-12-27T15:11:28+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{},"required":["appid","channel_id","device","gameid","imeil","oaid","sign","token"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"有效token\",\n\t\"time\": \"1694153313\",\n\t\"data\": {\n\t\t\"is_login\": 1, // 状态码; 1:成功 0:失败\n\t\t\"offline_time\": null\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/index/wxPay":{"post":{"x-target-id":"408bbf0","x-protocol":"http","summary":"shop 测试订单生成","description":"","tags":["API"],"x-mark-id":"1","x-updated-at":"2023-10-16T15:47:05+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"customMoney":{"type":"string","description":"金额","example":"10"}},"required":["customMoney","title"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.member_coin/getCoin":{"post":{"x-target-id":"408ccc4","x-protocol":"http","summary":"平台币使用记录","description":"","tags":["祈盟SDK/游戏API","祈盟SDK/游戏API/祈盟发起充值"],"x-mark-id":"1","x-updated-at":"2024-03-29T10:44:35+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"device":{"type":"string","description":"","example":"2"},"oaid":{"type":"string","description":"","example":""},"sign":{"type":"string","description":"","example":"1747fb4303be8bb8a8ecb190e8b1cada"},"token":{"type":"string","description":"","example":"J3YrYmrn7cOLBmImbTC353j+cV/+HX3o2G3vo8iiuh+nSIZ/K03JvYXxp+QwVWtj57cRBz2kO8EJgSdZeVxK1/W9ol0"}},"required":["appid","channel_id","device","gameid","imeil","oaid","sign","token"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.is_identity/verifyInfo.html":{"post":{"x-target-id":"409e804","x-protocol":"http","summary":"获取实名信息","description":"","tags":["祈盟SDK/游戏API"],"x-mark-id":"1","x-updated-at":"2023-10-16T15:48: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":""}}}}}},"/v2.user/personalIdentity":{"post":{"x-target-id":"410dc51","x-protocol":"http","summary":"实名认证","description":"","tags":["祈盟SDK/游戏API","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2025-04-21T14:20:15+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"realname":{"type":"string","description":"","example":"吴广九"},"idcard":{"type":"string","description":"411381199611156219","example":"320622195311296979"}},"required":["appid","channel_id","gameid","imeil","oaid","realname","idcard","sign","username"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"认证成功\",\n\t\"time\": \"1697793222\",\n\t\"data\": {\n\t\t\"mark\": 0\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 0,\n\t\"msg\": \"调用接口异常:SYS REQ IP ERROR\",\n\t\"time\": \"1709781726\",\n\t\"data\": \"\"\n}"}}}}}},"/v1.game_notify/index":{"post":{"x-target-id":"4343d63","x-protocol":"http","summary":"游戏公告","description":"","tags":["祈盟SDK/SDK"],"x-mark-id":"1","x-updated-at":"2024-12-09T16:42:14+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\": \"1701937432\",\n\t\"data\": {\n\t\t\"title\": \"11\",\n\t\t\"content\": \"

222222222222

\",\n\t\t\"img_url\": \"https://cdn.qmgames.cn/\",\n\t\t\"create_time\": 1701927278,\n\t\t\"begin_time\": 0\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.game_notify/ad":{"post":{"x-target-id":"44ed759","x-protocol":"http","summary":"游戏广告","description":"","tags":["祈盟SDK/SDK"],"x-mark-id":"1","x-updated-at":"2023-12-07T13:40:40+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.helper/checkToken.html":{"post":{"x-target-id":"45be365","x-protocol":"http","summary":"CP登陆二次效验(游戏方对接需要)","description":"","tags":["祈盟SDK/游戏API","SDK-H5/聚合渠道","SDK-H5/SDK/服务端"],"x-mark-id":"1","x-updated-at":"2024-04-13T11:49:58+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"平台登录返回的 sub_username","example":"133911"}},"required":["username","token",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.complex_authentication/check":{"post":{"x-target-id":"4d30dd6","x-protocol":"http","summary":"渠道实名认证","description":"","tags":["祈盟SDK/聚合渠道","SDK-H5/聚合渠道"],"x-mark-id":"1","x-updated-at":"2024-04-03T17:26:25+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"uid":{"type":"string","description":"渠道用户ID","example":"9527"},"channel_mark":{"type":"string","description":"渠道标识","example":"xinyou"},"game_id":{"type":"string","description":"祁盟游戏ID","example":"10"},"real_name":{"type":"string","description":"真实姓名","example":"郝吉文"},"id_card":{"type":"string","description":"身份证号","example":"411381199611156219"},"sign":{"type":"string","description":"签名-本地-母包","example":"ca7f6f9607b138b0970b0e54f1b24cd6"}},"required":["uid","channel_mark","game_id","real_name","id_card","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.complex_authentication/query":{"post":{"x-target-id":"4d4986c","x-protocol":"http","summary":"(弃用)实名认证结果查询","description":"","tags":["祈盟SDK/聚合渠道","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2024-04-10T10:36:31+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"uid":{"type":"string","description":"用户ID","example":"9527"},"channel_mark":{"type":"string","description":"渠道标识","example":"yueyou"},"sign":{"type":"string","description":"签名","example":"xxx"}},"required":["uid","channel_mark","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/YqlData/notifyCoupon":{"post":{"x-target-id":"4db2ee9","x-protocol":"http","summary":"代金卷使用通知-模拟","description":"","tags":["API/176 API"],"x-mark-id":"1","x-updated-at":"2024-04-24T10:46:22+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"coupon_id":{"type":"string","description":"176代金卷ID","example":"40"},"username":{"type":"string","description":"用户名(祈盟唯一)","example":"qmtest007"},"is_use":{"type":"string","description":"状态:1=未使用、2=使用中、3=已使用","example":"3"}},"required":["coupon_id","username","is_use",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"message\": \"通知成功!\",\n\t\"data\": []\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"http://devapi.176park.com:8081/serve/v1/notify/vouchers":{"post":{"x-target-id":"4eea176","x-protocol":"http","summary":"代金卷使用通知-模拟 副本","description":"","tags":["API/176 API"],"x-mark-id":"1","x-updated-at":"2024-04-24T10:46:54+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"176代金卷ID","example":"40"},"sign":{"type":"string","description":"","example":"qmtest007"}},"required":["id","sign",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"message\": \"通知成功!\",\n\t\"data\": []\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.pay_notify/ldzf_wx_pay.html":{"get":{"x-target-id":"4fb7aad","x-protocol":"http","summary":"联动优势","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2024-09-06T09:10:14+08:00","x-updated-user-name":"wen","parameters":[{"name":"amount","in":"query","description":"","required":true,"example":"100","schema":{"type":"string"}},{"name":"amt_type","in":"query","description":"","required":true,"example":"RMB","schema":{"type":"string"}},{"name":"bank_mer_id","in":"query","description":"","required":true,"example":"629164098","schema":{"type":"string"}},{"name":"bank_trace","in":"query","description":"","required":true,"example":"4200002146202405068282639115","schema":{"type":"string"}},{"name":"charset","in":"query","description":"","required":true,"example":"UTF-8","schema":{"type":"string"}},{"name":"error_code","in":"query","description":"","required":true,"example":"0000","schema":{"type":"string"}},{"name":"media_type","in":"query","description":"","required":true,"example":"MOBILE","schema":{"type":"string"}},{"name":"mer_date","in":"query","description":"","required":true,"example":"20240506","schema":{"type":"string"}},{"name":"mer_id","in":"query","description":"","required":true,"example":"55282","schema":{"type":"string"}},{"name":"open_id","in":"query","description":"","required":true,"example":"oEufkwJ3gEaw3L0gpeWs-0wbqi28","schema":{"type":"string"}},{"name":"order_id","in":"query","description":"","required":true,"example":"WL17143879676759122131","schema":{"type":"string"}},{"name":"pay_date","in":"query","description":"","required":true,"example":"20240506","schema":{"type":"string"}},{"name":"pay_seq","in":"query","description":"","required":true,"example":"ECZ00234202405061847545058208581","schema":{"type":"string"}},{"name":"pay_success_time","in":"query","description":"","required":true,"example":"20240506184801","schema":{"type":"string"}},{"name":"pay_type","in":"query","description":"","required":true,"example":"WECHATWEB","schema":{"type":"string"}},{"name":"service","in":"query","description":"","required":true,"example":"pay_result_notify","schema":{"type":"string"}},{"name":"settle_date","in":"query","description":"","required":true,"example":"20240506","schema":{"type":"string"}},{"name":"trade_no","in":"query","description":"","required":true,"example":"3405061800958161","schema":{"type":"string"}},{"name":"trade_state","in":"query","description":"","required":true,"example":"TRADE_SUCCESS","schema":{"type":"string"}},{"name":"version","in":"query","description":"","required":true,"example":"4.0","schema":{"type":"string"}},{"name":"sign","in":"query","description":"","required":true,"example":"XOxGRCpi2HpY9noBcIm/k/2EdPklDOkcm7sdsjeQWalj+T/QdbJtv/Mz/k7rhK9q6dPmPAJ7snBvU/ogng6MoTa/oIQBx4KXY3LebccqqKBK+nEqaSLjyrqlomq3zkftnGr1bEwqcxIKq5Uc8Xf4yxFNTHIuS1JcBB8GewREFHk=","schema":{"type":"string"}},{"name":"sign_type","in":"query","description":"","required":true,"example":"RSA","schema":{"type":"string"}}],"requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/mp/get_article_info":{"get":{"x-target-id":"5005ebc","x-protocol":"http","summary":"文章详情","description":"","tags":["API/第三方平台"],"x-mark-id":"1","x-updated-at":"2024-05-10T15:44:12+08:00","x-updated-user-name":"wen","parameters":[{"name":"id","in":"query","description":"","required":true,"example":"101","schema":{"type":"string"}}],"requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.complex_pay_notify/notify/channelqf/weilian/gameidqf/20":{"post":{"x-target-id":"55d3eb0","x-protocol":"http","summary":"唯恋-渠道回调","description":"","tags":["祈盟SDK/聚合渠道/聚合游戏回调","SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2024-08-26T15:52:08+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"app_id\": \"145\",\r\n\t\"cp_order_id\": \"CMWL17246553812333130862\",\r\n\t\"ext\": \"\",\r\n\t\"mem_id\": \"45749\",\r\n\t\"order_id\": \"g1724655381502ET000017\",\r\n\t\"order_status\": \"2\",\r\n\t\"pay_time\": \"1724655381\",\r\n\t\"product_id\": \"243320240826145621717898533\",\r\n\t\"product_name\": \"10\\u4e00\\u5143\\u8d2d1\\u5143\\u6863\",\r\n\t\"product_price\": \"1.00\",\r\n\t\"sign\": \"ddd49e2892fdd5377f4aecf6762f8605\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.pay_notify_coin/xty_pay.html":{"post":{"x-target-id":"56424c6","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![image.png](https://img.cdn.apipost.cn/client/user/205116/avatar/78805a221a988e79ef3f42d7c5bfd41866d9976c84de6.png \"image.png\")","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2024-09-06T09:11:06+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"charset\": \"UTF-8\",\r\n\t\"req_data\": \"{\\\"order_no\\\":\\\"1010371152024090609060275681\\\",\\\"pay_scene\\\":\\\"H5\\\",\\\"order_desc\\\":\\\"平台币\\\",\\\"order_name\\\":\\\"平台币\\\",\\\"pay_time\\\":\\\"20240906090625\\\",\\\"ch_order_no\\\":\\\"4200002346202409063726128081\\\",\\\"payer_account\\\":\\\"oAVOM6yBC6zrc8MdVXQAMQ9p4gyE\\\",\\\"out_trade_no\\\":\\\"COIN17255847627039174735\\\",\\\"total_amount\\\":100,\\\"reserved\\\":\\\"\\\",\\\"ch_out_trade_no\\\":\\\"5300031527240906\\\",\\\"trade_status\\\":\\\"SUCCESS\\\",\\\"pay_channel\\\":\\\"WX\\\",\\\"payer_id\\\":\\\"oAVOM6yBC6zrc8MdVXQAMQ9p4gyE\\\"}\",\r\n\t\"method\": \"trade.order.notify\",\r\n\t\"app_id\": \"A17222309452323464\",\r\n\t\"version\": \"1.0.1\",\r\n\t\"sign_type\": \"RSA2\",\r\n\t\"timestamp\": \"20240906090625\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.complex_pay_notify/notify/channelqf/congyu/gameidqf/10":{"post":{"x-target-id":"907c513f6802","x-protocol":"http","summary":"从语-回调","description":"","tags":["SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2026-02-06T15:47:01+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"gameId\": \"1811\",\r\n\t\"itemName\": \"新手礼包-8元礼包\",\r\n\t\"orderAmount\": \"800\",\r\n\t\"orderSn\": \"O181120260206141602701079863\",\r\n\t\"sign\": \"941cf4889d3f51d818f54f7a6621512d\",\r\n\t\"paySn\": \"2026020622001415711432553945\",\r\n\t\"version\": \"1.0\",\r\n\t\"userId\": \"74219144\",\r\n\t\"developerInfo\": \"CMWL17703585601926189311\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.complex_pay_notify/notify/channelqf/jlyx/gameidqf/10":{"post":{"x-target-id":"51bd544bf2016","x-protocol":"http","summary":"神龙游戏-渠道回调","description":"","tags":["祈盟SDK/聚合渠道/聚合游戏回调","SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2024-11-21T10:27:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\"data\":\"G2RCk3TVCDqypQeyAEDMT58ctjiZtd3DUuKW4cQuw3npkEZzsOuncfTnbSLdQotl7ALN9gxTEWN1Br9BV4URkiWs436zUuogOJPs1j5h%2FNGqjQjYz33vjVJRvYGWRmholZFLq9AumZ%2BaKFwNPicAvqOcP7020mIGhDyirkyLzUYZDUuPwnFUoBRiXfmdUKBMbq6yPI5w5SMSF53Go67AiPvB3%2BG0F44f1RtitstIX2VIJq720QLggOA%2B%2FXNRODe%2FIOVyNI9M9sZIceNmdMI3186OacRvgBANugKT1G8djSNDEgWHwdNdjGiARMog6sOzbfT4yp28q2l%2FGmnpT6E1Rg%3D%3D\"}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.pay_notify/dianhun":{"get":{"x-target-id":"96b472277d089","x-protocol":"http","summary":"电魂订单通知","description":"","tags":["SDK-H5/第三方"],"x-mark-id":"1","x-updated-at":"2025-08-13T08:59:01+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\"amount\":\"30.00\",\"create_time\":\"1754905071\",\"order_id\":\"151059163560351633408\",\"pay_time\":\"1754905080\",\"pay_type\":\"dh_wx\",\"product_desc\":\"\",\"product_name\":\"com.pay.yjl2.pm499\",\"qm_game_id\":\"413\",\"qm_username\":\"270417_stable\",\"sign\":\"64b5367b38dcd3ab2eb8285c00c9bdac\"}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/gh/get_sub_user_list":{"post":{"x-target-id":"aba14c77f65d6","x-protocol":"http","summary":"获取注册归属列表数据","description":"限制查询数据“直播平台所属推广员”的数据;\n\n```json\n{\n \"code\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"total\": 3,\n \"per_page\": \"5\",\n \"current_page\": 1,\n \"last_page\": 1,\n \"data\": [\n {\n \"id\": 250916,\n \"mid\": 340019,\n \"username\": \"13141314w\",\n \"nickname\": \"hJr340019\",\n \"game_id\": 550,\n \"game_name\": \"问山海(安卓)\",\n \"channel_id\": 10392,\n \"channel_name\": \"qmsy00442-11\",\n \"business_id\": 9425,\n \"business_name\": \"qmsy00442\",\n \"sub_president_id\": 5241,\n \"sub_president_name\": \"祈盟直播分发平台\",\n \"reg_time\": \"2026-02-13 23:59:11\",\n \"login_time\": \"2026-02-13 23:59:43\"\n }\n ]\n }\n}\n```\n\n返回数据中 data.data 下的参数说明:\n```php\n...\n->where($where)\n->order('ns.id desc')\n->field([\n\t'ns.id', // 子账户ID\n 'ns.member_id as mid', // 账户ID - 2\n\t'cm.username', // 账号 - 3\n\t'cm.nickname', // 昵称 - 4\n\n\t'cg.id as game_id', // 游戏ID - 5\n\t'cg.name as game_name', // 游戏名 - 6\n\n\t'nc.id as channel_id', // 推广员ID - 10\n\t'nc.name as channel_name', // 推广员名称\n\n\t'p1.id as business_id', // 子会长ID - 11\n\t'p1.name as business_name', // 子会长名称\n\n\t'p2.id as sub_president_id', // 会长ID - 12\n\t'p2.name as sub_president_name', // 会长名称\n\n\t'FROM_UNIXTIME(ns.create_time, \"%Y-%m-%d %H:%i:%s\") as reg_time', // 注册时间 - 14\n\t'FROM_UNIXTIME(ns.update_time, \"%Y-%m-%d %H:%i:%s\") as login_time', // 登录时间 - 15\n])\n->select();\n```","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-04-29T15:17:03+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"日期时间(年月日)","example":"2026-01-05","default":"2025-12-02"},"timestamp":{"type":"integer","description":"请求时间戳(签名需要)","example":"1765850279"},"sign":{"type":"string","description":"sign","example":"54afccd2275846e28e06f6f80a18f9d4"},"page":{"type":"integer","description":"分页页码(默认1)","example":"1"},"limit":{"type":"integer","description":"每页数量(默认100)","example":"5","default":"100"}},"required":["date","timestamp","sign","limit"]}}}},"responses":{"200":{"description":"成功-type=1","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 200,\r\n \"msg\": \"success\",\r\n \"data\": {\r\n \"total\": 3,\r\n \"per_page\": \"5\",\r\n \"current_page\": 1,\r\n \"last_page\": 1,\r\n \"data\": [\r\n {\r\n \"id\": 250916,\r\n \"username\": \"13141314w\",\r\n \"nickname\": \"hJr340019\",\r\n \"game_id\": 550,\r\n \"game_name\": \"问山海(安卓)\",\r\n \"channel_id\": 10392,\r\n \"channel_name\": \"qmsy00442-11\",\r\n \"business_id\": 9425,\r\n \"business_name\": \"qmsy00442\",\r\n \"sub_president_id\": 5241,\r\n \"sub_president_name\": \"祈盟直播分发平台\",\r\n \"reg_time\": \"2026-02-13 23:59:11\",\r\n \"login_time\": \"2026-02-13 23:59:43\"\r\n },\r\n {\r\n \"id\": 250915,\r\n \"username\": \"8bpuhh9th8t\",\r\n \"nickname\": \"gnN340018\",\r\n \"game_id\": 551,\r\n \"game_name\": \"问山海(IOS)\",\r\n \"channel_id\": 8460,\r\n \"channel_name\": \"qmsy00017t3-1\",\r\n \"business_id\": 8439,\r\n \"business_name\": \"qmsy00017t3\",\r\n \"sub_president_id\": 6018,\r\n \"sub_president_name\": \"qmsy00017\",\r\n \"reg_time\": \"2026-02-13 23:53:23\",\r\n \"login_time\": \"2026-02-14 00:48:28\"\r\n },\r\n {\r\n \"id\": 250914,\r\n \"username\": \"19172358290\",\r\n \"nickname\": \"r1x340017\",\r\n \"game_id\": 592,\r\n \"game_name\": \"无尽纷争(安卓)\",\r\n \"channel_id\": 10398,\r\n \"channel_name\": \"qmsy00518t1-1\",\r\n \"business_id\": 10397,\r\n \"business_name\": \"qmsy00518t1\",\r\n \"sub_president_id\": 10232,\r\n \"sub_president_name\": \"qmsy00518\",\r\n \"reg_time\": \"2026-02-13 23:47:06\",\r\n \"login_time\": \"2026-02-13 23:47:06\"\r\n }\r\n ]\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.complex_pay_notify/notify/channelqf/test/gameidqf/10":{"post":{"x-target-id":"140b3909736422","x-protocol":"http","summary":"渠道回调-测试渠道","description":"","tags":["SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2026-05-29T16:41:54+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"string","description":"订单号(支付和充值的订单号不一样) - 支付","example":"{{$mockjs.guid()}}"},"ext":{"type":"string","description":"","example":"CMWL17800439099077409911"},"money":{"type":"string","description":"","example":"50"}},"required":["orderid","ext","money"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"http://sdkapi.newsdk.com/v1.complex_pay_notify/notify/channelqf/tlyx/gameidqf/10":{"get":{"x-target-id":"20c45fd4b2401f","x-protocol":"http","summary":"贪乐","description":"","tags":["SDK-H5/聚合渠道/聚合游戏回调-服务端"],"x-mark-id":"1","x-updated-at":"2025-03-20T15:28:31+08:00","x-updated-user-name":"wen","parameters":[{"name":"mtype","in":"query","description":"","required":true,"example":"980","schema":{"type":"string"}},{"name":"time","in":"query","description":"","required":true,"example":"1742454002","schema":{"type":"string"}},{"name":"uid","in":"query","description":"","required":true,"example":"3522017","schema":{"type":"string"}},{"name":"money","in":"query","description":"","required":true,"example":"1","schema":{"type":"string"}},{"name":"sid","in":"query","description":"","required":true,"example":"1","schema":{"type":"string"}},{"name":"orderid","in":"query","description":"","required":true,"example":"GH2025032014584187366701456","schema":{"type":"string"}},{"name":"role_id","in":"query","description":"","required":true,"example":"202005201314","schema":{"type":"string"}},{"name":"role_name","in":"query","description":"","required":true,"example":"龙天","schema":{"type":"string"}},{"name":"ext","in":"query","description":"","required":true,"example":"CMWL17424539231620105031","schema":{"type":"string"}},{"name":"sign","in":"query","description":"","required":true,"example":"020c29e242eff5b55a612dbc3a7db0fc","schema":{"type":"string"}},{"name":"flag","in":"query","description":"","required":true,"example":"020c29e242eff5b55a612dbc3a7db0fc","schema":{"type":"string"}}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/unbindingPhone":{"post":{"x-target-id":"2111524e37d0f2","x-protocol":"http","summary":"换绑-绑定手机号","description":"","tags":["SDK-H5/我的/绑定手机号/换绑手机号"],"x-mark-id":"1","x-updated-at":"2025-07-07T17:58:09+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"checkToken":{"type":"string","description":"checkToken (旧手机号-效验验证码 返回的)","example":"8d14fe957736163f80c93c7310f235a0"},"code":{"type":"string","description":"验证码","example":"980855"},"phone":{"type":"string","description":"手机号","example":"13057807309"}},"required":["checkToken","code","phone"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"绑定成功\",\r\n\t\"time\": \"1733885950\",\r\n\t\"data\": []\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.privacy/privacy":{"post":{"x-target-id":"2113467eb7d114","x-protocol":"http","summary":"协议","description":"","tags":["SDK-H5/我的"],"x-mark-id":"1","x-updated-at":"2024-12-11T11:12:57+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"\",\r\n \"time\": \"1733886336\",\r\n \"data\": {\r\n \"user_agreement\": \"

\\u4e00\\u3001\\u7528\\u6237\\u534f\\u8bae<\\/span>xxxxxxx<\\/p>\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.login/logout.html":{"post":{"x-target-id":"2114ebfcf7d116","x-protocol":"http","summary":"退出","description":"","tags":["SDK-H5/我的"],"x-mark-id":"1","x-updated-at":"2024-12-11T11:14:15+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"退出成功\",\r\n\t\"time\": \"1733886797\",\r\n\t\"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"http://qm_url.7dgame.cn/":{"get":{"x-target-id":"25ef4af0324057","x-protocol":"http","summary":"获取请求域名地址(正式)","description":"","tags":["SDK-H5/公共"],"x-mark-id":"1","x-updated-at":"2025-03-24T17:18:47+08:00","x-updated-user-name":"wen","responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"http://sdkapi.7dgame.cn"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"http://qm_url.7dgame.cn/dev":{"get":{"x-target-id":"25ef88cd72405b","x-protocol":"http","summary":"获取请求域名地址(测试)","description":"","tags":["SDK-H5/公共"],"x-mark-id":"1","x-updated-at":"2025-03-24T17:18:49+08:00","x-updated-user-name":"wen","responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"http://devsdkapi.qmgames.cn"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.pay_notify/pay_refund":{"post":{"x-target-id":"2bc78da9ff60d9","x-protocol":"http","summary":"退单测试","description":"","tags":[],"x-mark-id":"1","x-updated-at":"2026-01-21T15:51:37+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"string","description":"订单号(支付和充值的订单号不一样) - 支付","example":"WL17688959053448807009"},"real_amount":{"type":"string","description":"","example":"0.01"}},"required":["orderid","real_amount"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.register/createChexkUsername.html":{"post":{"x-target-id":"2e67e98bb5e1cd","x-protocol":"http","summary":"注册生成用户名(纪言跑注册脚本用的)","description":"","tags":["祈盟SDK/游戏API/账户密码注册+登陆"],"x-mark-id":"1","x-updated-at":"2025-07-08T18:01:31+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.DyGameOpen/getRoleList":{"post":{"x-target-id":"3340516fbcc1c1","x-protocol":"http","summary":"抖音-获取角色列表","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-30T10:13:06+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"app_id\": 721109,\r\n \"game_user_ids\": [\"13121776520\"],\r\n \"open_id\": \"_0003zW-CmybIK-fFQr7LgYR8DLJXsQgatI0\"\r\n}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"err_no\": 0,\r\n \"err_msg\": \"\",\r\n \"data\": {\r\n \"roles\": [\r\n {\r\n \"game_user_id\": \"13121776520\",\r\n \"role_id\": \"id1\",\r\n \"role_name\": \"龙天1\",\r\n \"level\": \"99\",\r\n \"region_id\": \"服务器id\",\r\n \"region_name\": \"区服名称\",\r\n \"avatar_url\": \"http:\\/\\/sdkapi.newsdk.comupload\\/images\\/20250427\\\\419a85d14f0299c9d6ba24317a83da1b.jpg\"\r\n },\r\n {\r\n \"game_user_id\": \"13121776520\",\r\n \"role_id\": \"wen-10\",\r\n \"role_name\": \"wen_001\",\r\n \"level\": \"100\",\r\n \"region_id\": \"id001\",\r\n \"region_name\": \"name001\",\r\n \"avatar_url\": \"http:\\/\\/sdkapi.newsdk.comupload\\/images\\/20250427\\\\419a85d14f0299c9d6ba24317a83da1b.jpg\"\r\n }\r\n ]\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.DyGameOpen/HandleEventNotice":{"post":{"x-target-id":"33559cfbbcc203","x-protocol":"http","summary":"抖音-绑定事件通知","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-23T18:42:22+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"app_id":{"type":"string","description":"抖音游戏 ID","example":"180127"},"game_user_id":{"type":"string","description":"游戏账号 ID","example":"id123"},"role_id":{"type":"string","description":"游戏角色 ID,当bind_type=0时,此字段不为空。","example":"id123"},"open_id":{"type":"string","description":"抖音用户 openID,厂商侧可用于唯一标识抖音用户","example":"ou_xxx"},"allied_id":{"type":"string","description":"抖音用户 alliedID,厂商侧可用于跨游戏唯一标识同一抖音用户","example":"al_xxx"},"bind":{"type":"string","description":"1-绑定/换绑,2-解绑","example":"0"},"bind_type":{"type":"string","description":"0-绑定角色\n1-绑定游戏账号(仅新游首发前角色预创时使用)\n目前绑定游戏账号只有解绑/换绑,没有解绑","example":"0"},"tm":{"type":"string","description":"事件发生的unix时间戳,单位秒数。","example":"1712461914"}},"required":["app_id","game_user_id","role_id","open_id","allied_id","bind","bind_type","tm"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.Third/getJumpAuthCallback":{"post":{"x-target-id":"342fe9417cc23e","x-protocol":"http","summary":"抖音-游戏内授权后回调抖音游戏","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-28T14:56:24+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"is_agree":{"type":"string","description":"是否同意授权:0 拒绝,1 同意","example":"1"},"scheme":{"type":"string","description":"抖音跳转游戏 scheme 的参数,回调时需要透传带上","example":"xxx"},"username":{"type":"string","description":"游戏账号 ID(登录用户名)","example":"13121776520","default":""},"game_id":{"type":"string","description":"祈盟SDK-游戏ID","example":"10"}},"required":["is_agree","scheme","username","game_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.complex/handle.html":{"post":{"x-target-id":"37d4383432401c","x-protocol":"http","summary":"5. 角色上传接口","description":"角色事件:create=创角, enter=进入服务器, up_level=角色升级\n目前使用 create、up_level 就行;enter 没有,不用。","tags":["SDK-H5/聚合渠道"],"x-mark-id":"1","x-updated-at":"2026-02-10T09:08:50+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"server_id":{"type":"string","description":"服务器ID","example":"qm_0031"},"server_name":{"type":"string","description":"服务器名","example":"祈盟测试服21"},"role_id":{"type":"string","description":"角色ID","example":"qm_001@js_0001"},"role_name":{"type":"string","description":"角色名","example":"飞翔的企鹅0415"},"role_level":{"type":"string","description":"角色等级","example":"9"},"role_profession_id":{"type":"string","description":"角色职业ID","example":"zy_001"},"role_profession_name":{"type":"string","description":"角色职业名称","example":"战士"},"role_gender":{"type":"string","description":"角色性别","example":"未知"},"role_power":{"type":"string","description":"角色战力","example":"","default":"999"},"role_vip_level":{"type":"string","description":"角色VIP等级","example":"1"},"role_balance":{"type":"string","description":"角色用户余额","example":"99"},"role_action":{"type":"string","description":"角色事件:create=创角, enter=进入服务器, up_level=角色升级","example":"enter"},"role_party_name":{"type":"string","description":"帮派/公会名","example":"天地会"},"channel_mark":{"type":"string","description":"渠道标识","example":"kshy"},"role_party_id":{"type":"string","description":"帮派/公会ID","example":"bh_tdh"}},"required":["server_id","server_name","role_id","role_name","role_action","channel_mark"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"suesss\",\r\n \"time\": \"1744426652\",\r\n \"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.order/getPayInfo":{"post":{"x-target-id":"3baee99","x-protocol":"http","summary":"2. 获取支付方式-购买","description":"","tags":["祈盟SDK/游戏API/游戏内发起支付","SDK-H5/SDK/支付(游戏)"],"x-mark-id":"1","x-updated-at":"2025-02-27T17:40:43+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"money":{"type":"string","description":"","example":"1.1"},"oaid":{"type":"string","description":"","example":""},"roleId":{"type":"string","description":"","example":"id1"},"serveId":{"type":"string","description":"","example":"服务器id"}},"required":["appid","channel_id","gameid","imeil","money","oaid","roleId","serveId","sign","token","version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"发送成功\",\n\t\"time\": \"1695467205\",\n\t\"data\": {\n\t\t\"\t\": [\n\t\t\t{\n\t\t\t\t\"paytype\": \"old-zfb-wap\",\n\t\t\t\t\"payname\": \"支付宝支付(旧)\"\n\t\t\t}\n\t\t],\n\t\t\"member_coin\": {\n\t\t\t\"id\": 103552,\n\t\t\t\"amount\": \"0.00\",\n\t\t\t\"channel_id\": \"5215\",\n\t\t\t\"discount\": \"1\",\n\t\t\t\"discount_str\": \"10折\"\n\t\t},\n\t\t\"member_zs_coin\": {\n\t\t\t\"userid\": \"103552\",\n\t\t\t\"game_id\": \"256\",\n\t\t\t\"amount\": 0,\n\t\t\t\"status\": 1\n\t\t},\n\t\t\"coupon\": []\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"{{dev_u}}/member/sendcode":{"post":{"x-target-id":"3baeea5","x-protocol":"http","summary":"发送验证码","description":"","tags":["网站PC/公共"],"x-mark-id":"1","x-updated-at":"2023-08-08T10:48:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"phone":{"type":"text","description":"","example":"13121776520"},"ticket":{"type":"text","description":"","example":"t03O8qbyoPfT2ELrgOVvaUEvXOnkSajJqnXTyDONy2FodbFGwrbQUAAMLLV5ERh5D_6H1rDipXwOPMa3s5tZSDKDWxHRq3J8lQt1LDCFm_fRDMmhfHiGuUMMg**"},"randstr":{"type":"text","description":"","example":"@7oW"},"isExistUser":{"type":"text","description":"","example":"true"}},"required":["phone","ticket","randstr","isExistUser"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"http://devsdkadmin.7dgame.cn/pay/recallback.html":{"post":{"x-target-id":"3baeea7","x-protocol":"http","summary":"一键补单","description":"","tags":["网站PC/充值记录管理"],"x-mark-id":"1","x-updated-at":"2023-08-08T10:48:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"orderid":{"type":"text","description":"","example":"WL16913967441018177818"}},"required":["orderid"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.config/getconfig":{"post":{"x-target-id":"3baff4d","x-protocol":"http","summary":"1. 登陆配置","description":"","tags":["祈盟SDK/游戏API/登陆流程","SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2023-09-07T13:36:22+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"oaid":{"type":"string","description":"","example":""},"sign":{"type":"string","description":"","example":"77e84a42f37d1125606b2a6362e3c457"}},"required":["appid","channel_id","gameid","imeil","oaid","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功\",\n\t\"time\": \"1691464412\",\n\t\"data\": {\n\t\t\"game_id\": \"\",\n\t\t\"wx_type\": 0,\n\t\t\"wx_apppid\": \"\",\n\t\t\"wx_secret\": \"\",\n\t\t\"qq_type\": 0,\n\t\t\"qq_apppid\": \"\",\n\t\t\"qq_secret\": \"\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v1.test/index":{"post":{"x-target-id":"3bc48f3","x-protocol":"http","summary":"祈盟平台回调 - 测试/母包","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2023-08-14T13:48:39+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/xkhyn/pay":{"post":{"x-target-id":"3c2a897","x-protocol":"http","summary":"渠道回调地址","description":"","tags":["API/回调"],"x-mark-id":"1","x-updated-at":"2023-08-15T16:48:28+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/createUsername.html":{"post":{"x-target-id":"3f81688","x-protocol":"http","summary":"注册生成用户名","description":"","tags":["祈盟SDK/游戏API/账户密码注册+登陆","SDK-H5/注册&登录/账户注册"],"x-mark-id":"1","x-updated-at":"2024-03-14T09:30:39+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.pay_notify/ybzf_pay.html":{"post":{"x-target-id":"403a2bd","x-protocol":"http","summary":"支付回调","description":"","tags":["API/支付回调/易宝支付"],"x-mark-id":"1","x-updated-at":"2023-10-14T10:54:26+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"paytime":{"type":"string","description":"","example":"20231010170600"},"orderno":{"type":"string","description":"","example":"WL16969286415672652179"},"payno":{"type":"string","description":"","example":"12320231010t5201696928641915"},"paytype":{"type":"string","description":"","example":"4"},"productprice":{"type":"string","description":"","example":"100"},"returncode":{"type":"string","description":"返回代码 例:0000 代表成功 其他为失败","example":"0000"},"returnmsg":{"type":"string","description":"","example":"成功"},"transactionId":{"type":"string","description":"","example":"4200001729202310104772316145"},"userId":{"type":"string","description":"","example":"oX8gO5Xp1oDBT2DBwwznvQFDrIIM"},"sign":{"type":"string","description":"","example":"b09bd6f8323ae12e7df5e9952d89f358"}},"required":["paytime","orderno","payno","paytype","productprice","returncode","returnmsg","transactionId","userId","sign"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"success"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"{{admin_url}}/upload_notify/index/game_id/255/channel_id/5215/adminid/cps5186/encrypt/095f57fcce1f0aa87caa3afd35a287a8/apktype/0.html":{"post":{"x-target-id":"40b3179","x-protocol":"http","summary":"CPS 打包成功后通知接口","description":"","tags":["SDK 后台"],"x-mark-id":"1","x-updated-at":"2023-10-17T14:31:22+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"http://cpsapi.newsdk.com/Subpackage/package":{"post":{"x-target-id":"40b4a16","x-protocol":"http","summary":"游戏申请打包&重新打包","description":"使用CPS登录接口后,把header的参数进行替换:\n\nPHPSESSID = ![image.png](https://img.cdn.apipost.cn/upload/user/205116/logo/17f5d02c-a618-46f3-95a2-27810a14a165.png \"image.png\")\n\ntoken = ![image.png](https://img.cdn.apipost.cn/upload/user/205116/logo/52a11495-3d0e-4fe3-b778-2d824ae6449e.png \"image.png\")","tags":["CPS后台"],"x-mark-id":"1","x-updated-at":"2025-08-21T13:58:44+08:00","x-updated-user-name":"wen","parameters":[{"name":"Cookie","in":"header","description":"","required":true,"example":"_ga=GA1.1.110805490.1715912780; _ga_X600BFQZKD=GS1.1.1715912780.1.0.1715912793.0.0.0; _c_WBKFRo=jS6fePDtqLCXMdmcB2LBJ0rx0cfGtYKhcO0wHpbv; _nb_ioWEgULi=; PHPSESSID=b2dnc3dse1audp57515rcl1k8r; Admin-Token=b2dnc3dse1audp57515rcl1k8r","schema":{"type":"string"}}],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channelIds":{"type":"string","description":"","example":"5215"},"gameIds":{"type":"string","description":"","example":"30"}},"required":["channelIds","gameIds"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\n\t\"data\": [\n\t\t{\n\t\t\t\"id\": \"test_c\",\n\t\t\t\"msg\": \"已经提交至后台审核,请耐心等待!\",\n\t\t\t\"type\": 0\n\t\t},\n\t\t{\n\t\t\t\"id\": \"test_c\",\n\t\t\t\"msg\": \"打包请求提交成功\",\n\t\t\t\"type\": 1\n\t\t}\n\t],\n\t\"code\": 20000,\n\t\"msg\": \"获取打包结果成功\"\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.CheckUpdate/version":{"post":{"x-target-id":"4241ebb","x-protocol":"http","summary":"安卓-热更新","description":"","tags":["祈盟SDK/SDK/更新管理(热更新)"],"x-mark-id":"1","x-updated-at":"2025-02-26T17:21:46+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"version_num":{"type":"string","description":"当前客户端版本号的构造号","example":"3"}},"required":["version_num"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"\",\n\t\"time\": \"1699321429\",\n\t\"data\": {\n\t\t\"status\": true,\n\t\t\"filename\": \"http://static.qmgames.cn/test\"\n\t}\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.system_message/getMessageList":{"post":{"x-target-id":"42ee771","x-protocol":"http","summary":"系统消息列表","description":"","tags":["祈盟SDK/SDK/个人中心/系统消息"],"x-mark-id":"1","x-updated-at":"2023-11-27T11:57:18+08:00","x-updated-user-name":"wen","parameters":[{"name":"page","in":"query","description":"","required":true,"example":"1","schema":{"type":"string"}},{"name":"pageSize","in":"query","description":"","required":true,"example":"10","schema":{"type":"string"}}],"requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.system_message/getMessageDetail":{"post":{"x-target-id":"4343ca2","x-protocol":"http","summary":"消息详情","description":"","tags":["祈盟SDK/SDK/个人中心/系统消息"],"x-mark-id":"1","x-updated-at":"2023-11-18T11:05:03+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_version/getNew":{"post":{"x-target-id":"43ef881","x-protocol":"http","summary":"公告&强更","description":"```json\ndata 数据展示:\n{\n \"game\": {\n \"id\": 10,\n \"name\": \"母包ANDROID\", // 游戏名\n \"icon\": \"https://cdn.qmgames.cn/image/game/icons/2023091416266502c3cc46898.png\", // 图标\n \"game_num\": 1, // 当前游戏版本的构造号\n \"game_version\": \"v3.2.1\" // 当前游戏的版本号\n },\n \"short_link\": \"http://t.7dgames.cn/l9v14kvq\", // 推广短链 - IOS使用\n \"file_url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/650ead4e921dd.apk\" // app下载地址 - Android使用\n}\n```","tags":["祈盟SDK/SDK/个人中心/游戏最新版本检测"],"x-mark-id":"2","x-updated-at":"2025-02-26T17:21:51+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"string","description":"游戏的强更号","example":"1"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"\",\r\n\t\"time\": \"1701162054\",\r\n\t\"data\": {\r\n\t\t\"game\": {\r\n\t\t\t\"id\": 10,\r\n\t\t\t\"name\": \"母包ANDROID\", // 游戏名\r\n\t\t\t\"icon\": \"https://cdn.qmgames.cn/image/game/icons/2023091416266502c3cc46898.png\", // 图标\r\n\t\t\t\"game_num\": 1, // 当前游戏版本的构造号\r\n\t\t\t\"game_version\": \"v3.2.1\" // 当前游戏的版本号\r\n\t\t},\r\n\t\t\"short_link\": \"http://t.7dgames.cn/l9v14kvq\", // 推广短链 - IOS使用\r\n\t\t\"file_url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/650ead4e921dd.apk\" // app下载地址 - Android使用\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v1.check_update/checkClientUpdate.html":{"post":{"x-target-id":"4438faa","x-protocol":"http","summary":"IOS-强更","description":"","tags":["祈盟SDK/SDK/更新管理(热更新)"],"x-mark-id":"1","x-updated-at":"2024-12-09T15:44:54+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"string","description":"游戏强更版本号","example":"45"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.game_version/getPackage":{"post":{"x-target-id":"445d376","x-protocol":"http","summary":"申请最新游戏包分包","description":"```json\ndata 数据展示:\n{\n \"game\": {\n \"id\": 10,\n \"name\": \"母包ANDROID\", // 游戏名\n \"icon\": \"https://cdn.qmgames.cn/image/game/icons/2023091416266502c3cc46898.png\", // 图标\n \"game_num\": 1, // 当前游戏版本的构造号\n \"game_version\": \"v3.2.1\" // 当前游戏的版本号\n },\n \"short_link\": \"http://t.7dgames.cn/l9v14kvq\", // 推广短链 - IOS使用\n \"file_url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/650ead4e921dd.apk\" // app下载地址 - Android使用\n}\n```","tags":["祈盟SDK/SDK/个人中心/游戏最新版本检测"],"x-mark-id":"2","x-updated-at":"2025-02-27T11:46:11+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"string","description":"游戏的强更号","example":"1"}},"required":["channel_version"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"\",\r\n\t\"time\": \"1701162054\",\r\n\t\"data\": {\r\n\t\t\"game\": {\r\n\t\t\t\"id\": 10,\r\n\t\t\t\"name\": \"母包ANDROID\", // 游戏名\r\n\t\t\t\"icon\": \"https://cdn.qmgames.cn/image/game/icons/2023091416266502c3cc46898.png\", // 图标\r\n\t\t\t\"game_num\": 1, // 当前游戏版本的构造号\r\n\t\t\t\"game_version\": \"v3.2.1\" // 当前游戏的版本号\r\n\t\t},\r\n\t\t\"short_link\": \"http://t.7dgames.cn/l9v14kvq\", // 推广短链 - IOS使用\r\n\t\t\"file_url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/650ead4e921dd.apk\" // app下载地址 - Android使用\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.game_notify/index":{"post":{"x-target-id":"44f5732","x-protocol":"http","summary":"游戏公告&强更(弃用)","description":"","tags":["祈盟SDK/SDK/个人中心/公告&强更"],"x-mark-id":"1","x-updated-at":"2024-10-23T20:15:32+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel_version":{"type":"string","description":"游戏的强更号","example":"1"}},"required":["channel_version",""]}}}},"responses":{"200":{"description":"有强更","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 1,\n\t\"msg\": \"获取成功!\",\n\t\"time\": \"1702520501\",\n\t\"data\": {\n\t\t\"notify\": [\n\t\t\t\"{\\\"id\\\":12,\\\"title\\\":\\\"母包安卓-强更\\\",\\\"content\\\":\\\"

强更,666<\\\\/p>\\\",\\\"notify_type\\\":3}\"\n\t\t],\n\t\t\"status\": true,\n\t\t\"url\": \"https://cdn.qmgames.cn/sygame/mubaoANDROID/65728556d7d88.apk\"\n\t}\n}"}}},"404":{"description":"无更新","content":{"application/json":{"schema":{"type":"object"},"example":"{\n\t\"code\": 1,\n\t\"msg\": \"无\",\n\t\"time\": \"1702520716\",\n\t\"data\": {\n\t\t\"notify\": [],\n\t\t\"status\": false,\n\t\t\"url\": \"\"\n\t}\n}"}}}}}},"/v1.pay_notify_coin/qzl_pay.html":{"post":{"x-target-id":"484e3b6","x-protocol":"http","summary":"充值回调","description":"","tags":["API/支付回调/趣智连"],"x-mark-id":"1","x-updated-at":"2024-01-24T16:46:18+08:00","x-updated-user-name":"wen","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":"{\"amount\":\"1000.00\",\"cpOrderNo\":\"400COIN17057541813766166617\",\"payResult\":\"0\",\"mchOrderNo\":\"COIN17057541813766166617\",\"errMsg\":\"\",\"resultCode\":0,\"sign\":\"3A2FBB51F80043204332DBDB7AF161A5\",\"traceTime\":\"20240120203630\",\"message\":\"8\",\"mchNo\":\"M8822024010410000400\",\"status\":0}"}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"success"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/mp/get_wxmp_code":{"post":{"x-target-id":"48a8587","x-protocol":"http","summary":"获取微信Auth","description":"","tags":["API/第三方平台"],"x-mark-id":"1","x-updated-at":"2024-04-29T19:06:55+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"code":{"type":"string","description":"","example":"xxx"}},"required":["code"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"devcpsapi.qmgames.cn/LiveGrad/gamePack":{"post":{"x-target-id":"493954f","x-protocol":"http","summary":"直播平台-分包接口(乐乐)","description":"域名使用:\n- 正式:http://cpsapi.qmgames.cn\n- 测试:http://devcpsapi.qmgames.cn\n- 本地:http://cpsapi.newsdk.com","tags":["CPS后台"],"x-mark-id":"1","x-updated-at":"2026-03-10T14:35:34+08:00","x-updated-user-name":"wen","parameters":[{"name":"Cookie","in":"header","description":"","required":true,"example":"PHPSESSID=668f20a8a4ab87f03d2603cda50235fe","schema":{"type":"string"}}],"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"channel":{"type":"string","description":"渠道号","example":"5215"},"yxid":{"type":"string","description":"游戏ID","example":"20"}},"required":["channel","yxid",""]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\r\n \"code\": 20002,\r\n \"msg\": \"success\",\r\n \"time\": \"1712807440\",\r\n \"data\": {\r\n \"tgy_link\": \"http://devt.qmgames.cn/l9v14kvq\",\r\n \"app_link\": \"https://sdkdevdown.qmgames.cn/sygame/mubaoANDROID/66067a16492a3.apk\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":"{\r\n \"code\": 10015,\r\n \"msg\": \"当前游戏不存在!\",\r\n \"time\": \"1712834816\",\r\n \"data\": \"\"\r\n}"}}}}}},"/YqlData/getGameAccount":{"post":{"x-target-id":"4ce7332","x-protocol":"http","summary":"查询玩家账号列表","description":"","tags":["API/176 API"],"x-mark-id":"1","x-updated-at":"2024-04-25T15:04:02+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"mobile":{"type":"string","description":"查询的手机号","example":"17719118763"},"sign":{"type":"string","description":"sign","example":"4ab98c7781c1b1ece9ea6919fdd2939e"}},"required":["mobile","sign","username","password"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":"{\n\t\"200\": 0,\n\t\"message\": \"success\",\n\t\"data\": [\n\t\t{\n\t\t\t\"id\": 103487,\n\t\t\t\"username\": \"13121776521\",\n\t\t\t\"nickname\": \"yiE103487\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 103523,\n\t\t\t\"username\": \"13121776523\",\n\t\t\t\"nickname\": \"4N4103523\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 103552,\n\t\t\t\"username\": \"13121776520\",\n\t\t\t\"nickname\": \"pRI103552\"\n\t\t}\n\t]\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":"{\n\t\"200\": 0,\n\t\"message\": \"缺少查询手机号!\",\n\t\"data\": []\n}"}}}}}},"/mp/get_order_info":{"post":{"x-target-id":"4f9d28d","x-protocol":"http","summary":"获取订单详情","description":"","tags":["API/第三方平台"],"x-mark-id":"1","x-updated-at":"2024-05-07T10:32:58+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"order_id":{"type":"string","description":"","example":"WL17150491113744192376"}},"required":["order_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":"{\n\t\"code\": 100,\n\t\"msg\": \"缺少必要参数:order_id\",\n\t\"time\": \"1715046427\",\n\t\"data\": []\n}"}}}}}},"sdkapi.qmgames.cn:80/v1.pay_notify/ldzf_wx_pay.html":{"post":{"x-target-id":"5030a6e","x-protocol":"http","summary":"支付回调","description":"","tags":["API/支付回调/联动优势"],"x-mark-id":"1","x-updated-at":"2024-05-13T11:49:30+08:00","x-updated-user-name":"wen","parameters":[{"name":"amount","in":"query","description":"","required":true,"example":"6","schema":{"type":"string"}},{"name":"amt_type","in":"query","description":"","required":true,"example":"RMB","schema":{"type":"string"}},{"name":"bank_mer_id","in":"query","description":"","required":true,"example":"629164348","schema":{"type":"string"}},{"name":"bank_trace","in":"query","description":"","required":true,"example":"4200002166202405133705720151","schema":{"type":"string"}},{"name":"charset","in":"query","description":"","required":true,"example":"UTF-8","schema":{"type":"string"}},{"name":"error_code","in":"query","description":"","required":true,"example":"0000","schema":{"type":"string"}},{"name":"media_type","in":"query","description":"","required":true,"example":"MOBILE","schema":{"type":"string"}},{"name":"mer_date","in":"query","description":"","required":true,"example":"20240513","schema":{"type":"string"}},{"name":"mer_id","in":"query","description":"","required":true,"example":"55282","schema":{"type":"string"}},{"name":"open_id","in":"query","description":"","required":true,"example":"oEufkwJ3gEaw3L0gpeWs-0wbqi28","schema":{"type":"string"}},{"name":"order_id","in":"query","description":"","required":true,"example":"WL17155718980248126528","schema":{"type":"string"}},{"name":"pay_date","in":"query","description":"","required":true,"example":"20240513","schema":{"type":"string"}},{"name":"pay_seq","in":"query","description":"","required":true,"example":"ECZ00234202405131147305088616481","schema":{"type":"string"}},{"name":"pay_success_time","in":"query","description":"","required":true,"example":"20240513114735","schema":{"type":"string"}},{"name":"pay_type","in":"query","description":"","required":true,"example":"WECHATWEB","schema":{"type":"string"}},{"name":"service","in":"query","description":"","required":true,"example":"pay_result_notify","schema":{"type":"string"}},{"name":"settle_date","in":"query","description":"","required":true,"example":"20240513","schema":{"type":"string"}},{"name":"trade_no","in":"query","description":"","required":true,"example":"3405131147466401","schema":{"type":"string"}},{"name":"trade_state","in":"query","description":"","required":true,"example":"TRADE_SUCCESS","schema":{"type":"string"}},{"name":"version","in":"query","description":"","required":true,"example":"4.0","schema":{"type":"string"}},{"name":"sign","in":"query","description":"","required":true,"example":"Qg9rKbI/RmlS/+Vo2liY7+j6ws4+CNnPORrRNCiUtgkpWS6TkKoe3M/Z3WSN5xGHysO2nbazx2GInggf4fgEJu8BaRcb1Osmcjtygi6Y9dmLGKI4NuA8xu3sX9rO05idmRO5OkjHaPcYn8Z0dGE/ukCYX9zNL3d4HF4rnv/1AhQ=","schema":{"type":"string"}},{"name":"sign_type","in":"query","description":"","required":true,"example":"RSA","schema":{"type":"string"}}],"requestBody":{"content":{}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"/v2.order/orderList":{"post":{"x-target-id":"529ebfe","x-protocol":"http","summary":"订单列表","description":"","tags":["祈盟SDK/SDK/个人中心/订单","SDK-H5/我的/订单"],"x-mark-id":"1","x-updated-at":"2024-06-26T11:32:42+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":"20"},"type":{"type":"string","description":"支付类型: 1=充值, 2=支付","example":"1"},"month":{"type":"string","description":"","example":""}},"required":["page","pageSize","type","month"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":[],"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":[],"example":""}}}}}},"https://mlbb-uapi.tarenwang.net/open/qimeng/sendRewards":{"get":{"x-target-id":"25972fbf6128","x-protocol":"http","summary":"游戏方接口范例","description":"","tags":["第三方合作/旅人-魔力宝贝"],"x-mark-id":"1","x-updated-at":"2026-02-03T16:22:21+08:00","x-updated-user-name":"wen","parameters":[{"name":"appId","in":"query","description":"","required":true,"example":"201030086","schema":{"type":"string"}},{"name":"channelId","in":"query","description":"","required":true,"example":"201032019","schema":{"type":"string"}},{"name":"channelUserId","in":"query","description":"","required":true,"example":"103523_stable","schema":{"type":"string"}},{"name":"serverId","in":"query","description":"","required":true,"example":"10084","schema":{"type":"string"}},{"name":"roleId","in":"query","description":"","required":true,"example":"1008400002621","schema":{"type":"string"}},{"name":"actId","in":"query","description":"","required":true,"example":"250225","schema":{"type":"string"}},{"name":"actSubId","in":"query","description":"","required":true,"example":"2","schema":{"type":"string"}},{"name":"orderId","in":"query","description":"","required":true,"example":"MLBB17660362565546891855","schema":{"type":"string"}},{"name":"ts","in":"query","description":"","required":true,"example":"1766036256","schema":{"type":"string"}},{"name":"sign","in":"query","description":"","required":true,"example":"ca546c5959c8846cc99d55f85ea5f77f","schema":{"type":"string"}}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.forget/resetPwdSendCode":{"post":{"x-target-id":"fac0417f240a9","x-protocol":"http","summary":"发送-验证码","description":"版本大于 v3.6.7 时候,返回数据中 data.user 置空,不会有用户列表数据;\n```json\n{\n \"code\": 1,\n \"msg\": \"发送成功\",\n \"time\": \"1781602875\",\n \"data\": {\n \"user\": []\n }\n}\n```","tags":["SDK-H5/注册&登录/忘记密码"],"x-mark-id":"1","x-updated-at":"2026-06-16T17:57:44+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"random":{"type":"string","description":"图形验证码标识","example":"eb55f905cbd4220b3c06b0e995a441d41_wen"},"captcha":{"type":"string","description":"图形验证码","example":"89p13"},"phone":{"type":"string","description":"手机号","example":"13121776520"}},"required":["random","captcha","phone"]}}}},"responses":{"200":{"description":"大于v3.6.7版本","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"发送成功\",\r\n\t\"time\": \"1781603675\",\r\n\t\"data\": {\r\n\t\t\"user\": []\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.Gift/giftList":{"post":{"x-target-id":"11ca31e87f2001","x-protocol":"http","summary":"礼包列表","description":"","tags":["祈盟SDK/SDK/礼包","SDK-H5/我的/礼包"],"x-mark-id":"1","x-updated-at":"2025-03-28T13:18:09+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\": \"1733553144\",\r\n\t\"data\": {\r\n\t\t\"total\": 1,\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\": 42,\r\n\t\t\t\"gameid\": \"10,20\",\r\n\t\t\t\"title\": \"测试礼包\",\r\n\t\t\t\"content\": \"测试礼包,礼包测试,测试领取\",\r\n\t\t\t\"total\": 4,\r\n\t\t\t\"used\": 1,\r\n\t\t\t\"starttime\": \"2024-12-07 00:00:00\",\r\n\t\t\t\"endtime\": \"2024-12-31 23:59:59\",\r\n\t\t\t\"description\": \"\",\r\n\t\t\t\"consume\": \"0.00\",\r\n\t\t\t\"percent\": 75,\r\n\t\t\t\"name\": \"母包ANDROID 母包IOS\",\r\n\t\t\t\"mobileicon\": \"https://sdkdevdown.qmgames.cn/image/game/icons/2023091416266502c3cc46898.png\",\r\n\t\t\t\"status\": \"2\",\r\n\t\t\t\"consumeStr\": \"进游领取\",\r\n\t\t\t\"eligibility\": 1\r\n\t\t}]\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/index/notidy":{"get":{"x-target-id":"186250ddf24013","x-protocol":"http","summary":"支付回调示例","description":"","tags":["SDK-H5/SDK/支付回调"],"x-mark-id":"1","x-updated-at":"2026-01-20T17:40:15+08:00","x-updated-user-name":"wen","parameters":[{"name":"orderid","in":"query","description":"","required":true,"example":"WL17592481345163676148","schema":{"type":"string"}},{"name":"username","in":"query","description":"","required":true,"example":"999999","schema":{"type":"string"}},{"name":"gameid","in":"query","description":"","required":true,"example":"10","schema":{"type":"string"}},{"name":"roleid","in":"query","description":"","required":true,"example":"99999","schema":{"type":"string"}},{"name":"serverid","in":"query","description":"","required":true,"example":"9999","schema":{"type":"string"}},{"name":"paytype","in":"query","description":"","required":true,"example":"coinpay","schema":{"type":"string"}},{"name":"amount","in":"query","description":"","required":true,"example":"6","schema":{"type":"string"}},{"name":"paytime","in":"query","description":"","required":true,"example":"1698286336","schema":{"type":"string"}},{"name":"attach","in":"query","description":"","required":true,"example":"243220231026101155959469999","schema":{"type":"string"}},{"name":"appkey","in":"query","description":"","required":true,"example":"c531455fe1aef8c97c8b6d85d7a3dc19","schema":{"type":"string"}},{"name":"sign","in":"query","description":"","required":true,"example":"e7296f18cbef624b9cc8287669d682f2","schema":{"type":"string"}}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/unbindingPhoneCode":{"post":{"x-target-id":"210e30b4f7d0c4","x-protocol":"http","summary":"旧手机号-获取验证码","description":"","tags":["SDK-H5/我的/绑定手机号/换绑手机号"],"x-mark-id":"1","x-updated-at":"2025-07-07T17:58:05+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"captcha":{"type":"string","description":"","example":"89p13"},"random":{"type":"string","description":"","example":"eb55f905cbd4220b3c06b0e995a441d41_wen"}},"required":["captcha","random"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"发送成功\",\r\n \"time\": \"1733884993\",\r\n \"data\": []\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/getNewImeiCode":{"post":{"x-target-id":"211253447cc185","x-protocol":"http","summary":"验证码获取","description":"发送短信验证码前需要先进行图形验证码 /v2.Captcha/getCaptcha\n","tags":["SDK-H5/注册&登录/新设备判断"],"x-mark-id":"1","x-updated-at":"2026-06-22T10:28:51+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"captcha":{"type":"string","description":"图形验证码","example":"89p13"},"random":{"type":"string","description":"图形验证码 标识","example":"eb55f905cbd4220b3c06b0e995a441d41_wen"}},"required":["captcha","random"]}}}},"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":""}}}}}},"/v2.forget/resetPwdCheckCode":{"post":{"x-target-id":"211abbe4b7d163","x-protocol":"http","summary":"效验-验证码","description":"版本大于 v3.6.7 时候:\n- 请求参数 user_id 不需要;\n- 返回数据,不在返回 data.checkToken 参数;\n\n返回 数据调整,如下:\n```json\n{\n \"code\": 1,\n \"msg\": \"效验成功!\",\n \"time\": \"1781678815\",\n \"data\": {\n \"checkToken\": \"\",\n \"user_list\": [\n {\n \"id\": 266035, // 用户ID\n \"username\": \"13121776520\", // 用户名\n \"check_token\": \"MjY2MDM1cW1zZGs=\" // 下一步所需的 checkToken 参数\n },\n {\n \"id\": 266044,\n \"username\": \"qm26041403\",\n \"check_token\": \"MjY2MDQ0cW1zZGs=\"\n }\n ]\n }\n}\n```\n","tags":["SDK-H5/注册&登录/忘记密码"],"x-mark-id":"1","x-updated-at":"2026-06-23T10:02:01+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"phone":{"type":"string","description":"","example":"13121776520"},"code":{"type":"string","description":"","example":"256052"}},"required":["phone","code"]}}}},"responses":{"200":{"description":"大于3.6.7版本","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n\t\"code\": 1,\r\n\t\"msg\": \"效验成功!\",\r\n\t\"time\": \"1781678815\",\r\n\t\"data\": {\r\n\t\t\"checkToken\": \"\",\r\n\t\t\"user_list\": [\r\n\t\t\t{\r\n\t\t\t\t\"id\": 266035,\r\n\t\t\t\t\"username\": \"13121776520\",\r\n\t\t\t\t\"check_token\": \"MjY2MDM1\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": 266044,\r\n\t\t\t\t\"username\": \"qm26041403\",\r\n\t\t\t\t\"check_token\": \"MjY2MDQ0\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": 266045,\r\n\t\t\t\t\"username\": \"qm260526\",\r\n\t\t\t\t\"check_token\": \"MjY2MDQ1\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": 266047,\r\n\t\t\t\t\"username\": \"qm26060901\",\r\n\t\t\t\t\"check_token\": \"MjY2MDQ3\"\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/Login/checklogin":{"post":{"x-target-id":"26ef10c2b7510e","x-protocol":"http","summary":"CPS 登录【直播平台使用】","description":"","tags":["CPS后台"],"x-mark-id":"1","x-updated-at":"2026-05-25T11:10:16+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"13121776520, 15355497631,zbwviztb,qmtests","example":"祈盟直播分发平台"},"password":{"type":"string","description":"zbxvhhzd:o1c8z99j\nzbjbbxmv:vaxevk5c","example":"zb123456"}},"required":["username","password"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.user/getChannelCall":{"post":{"x-target-id":"271d6718336084","x-protocol":"http","summary":"专属客服","description":"\n```json\n{\n \"code\": 1,\n \"msg\": \"获取成功\",\n \"time\": \"1767598860\",\n \"data\": {\n \"info\": {\n \"id\": 36,\n \"nickname\": \"\",\n \"notice\": \"大师大师大四大欠王大青蛙帝企鹅强大手打大师大师大四大欠王大青蛙帝企鹅强大手打\", // 说明\n \"wx_qr_code\": \"http:\\/\\/cdn.qmgames.cn\\/business_file\\/customer\\/1760172914951.jpg\", // 微信二维码\n \"wx_kefu_url\": \"https://work.weixin.qq.com/kfid/kfcb33e81e7789a98f0\" // 微信客服链接\n }\n }\n}\n```","tags":["SDK-H5/我的/客服中心"],"x-mark-id":"1","x-updated-at":"2026-01-27T11:51:28+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/upload_test_pack":{"post":{"x-target-id":"277b98f1736491","x-protocol":"http","summary":"游戏物料上传","description":"","tags":["相关说明/分包程序"],"x-mark-id":"1","x-updated-at":"2025-10-10T17:44:46+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","description":"上传文件","example":"C:\\Users\\Administrator\\Desktop\\test_game\\game_logo.jpg","format":"binary"},"pinyin":{"type":"string","description":"文件名","example":"{{$mockjs.guid()}}","default":""}},"required":["file","pinyin"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v2.AiAssistant/getConfig":{"post":{"x-target-id":"2c06dc373f6244","x-protocol":"http","summary":"AI 助手配置","description":"\n```json\n{\n ...\n \"data\": {\n \"status\": 1, // 状态:1=开启, 2=关闭\n \"ai_url\": \"https://jiamike.com/call\" // AI助手URL\n }\n}\n```\n\n","tags":["SDK-H5/我的/ai助手"],"x-mark-id":"1","x-updated-at":"2026-01-21T16:22:02+08:00","x-updated-user-name":"wen","requestBody":{"content":{}},"responses":{"200":{"description":"未开启","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"当前渠道的助手未开启!\",\r\n \"time\": \"1768983511\",\r\n \"data\": {\r\n \"status\": 2,\r\n \"ai_url\": \"\"\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.login/third":{"post":{"x-target-id":"30abdc207cc074","x-protocol":"http","summary":"第三方用户登录","description":"","tags":["SDK-H5/注册&登录"],"x-mark-id":"1","x-updated-at":"2025-05-24T16:41:03+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"第三方标识","example":"_0003zW-CmybIK-fFQr7LgYR8DLJXsQgatI0"},"type_id":{"type":"string","description":"类型:1=微信, 2=qq, 3=抖音","example":"3"}},"required":["username","type_id"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"\\u767b\\u5f55\\u6210\\u529f\",\r\n \"time\": \"1747880674\",\r\n \"data\": {\r\n \"token\": \"J3YrYmrn7cOLBmUuN2jk4Cv7IwurTXi9gTzvq8OkvxenAYB5ek6T/Ny07KcwVm8mqr4ZBzqrVMkqgAFITz5Lkfqok0ZsnZr2\",\r\n \"username\": \"x35d6nxnsxr\",\r\n \"sub_username\": \"188328_test\",\r\n \"offline_time\": null\r\n }\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"/v1.role/add.html":{"post":{"x-target-id":"30be0367f7d542","x-protocol":"http","summary":"新增角色信息(创建角色)","description":"","tags":["祈盟SDK/游戏API/角色管理"],"x-mark-id":"1","x-updated-at":"2024-12-23T15:09:26+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"partyname":{"type":"string","description":"聚合名字","example":""},"rolebalance":{"type":"string","description":"游戏余额","example":"0"},"roleid":{"type":"string","description":"角色 ID","example":"{{login_username}}-001"},"rolename":{"type":"string","description":"角色名","example":"wen_001"},"rolelevel":{"type":"string","description":"角色等级","example":"102"},"serverid":{"type":"string","description":"区服 ID","example":"2000"},"servername":{"type":"string","description":"区服名","example":"name001"},"viplevel":{"type":"string","description":"VIP 等级","example":"10"}},"required":["partyname","rolebalance","roleid","rolename","rolelevel","serverid","servername","viplevel"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"},"example":"{\r\n \"code\": 1,\r\n \"msg\": \"添加角色成功!\",\r\n \"time\": \"1734073613\",\r\n \"data\": \"\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object"},"example":""}}}}}},"/v2.DyGameOpen/getAuthLogin":{"post":{"x-target-id":"32e6733bfcc12c","x-protocol":"http","summary":"抖音-授权登录","description":"","tags":["SDK-H5/第三方/抖音平台/抖音游戏平台"],"x-mark-id":"1","x-updated-at":"2025-05-23T14:21:42+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"app_id":{"type":"string","description":"","example":"721109"},"auth_code":{"type":"string","description":"","example":"bbefc9d82e10ff19zNPGDpyQRFHK0INpFXSu_hj"}},"required":["app_id","auth_code"]}}}},"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"data\": {\r\n \"game_users\": [\r\n {\r\n \"game_user_id\": 153328,\r\n \"game_user_name\": \"龙天1\",\r\n \"mask_account_number\": \"131****6520\"\r\n },\r\n {\r\n \"game_user_id\": 206760,\r\n \"game_user_name\": \"wen_001\",\r\n \"mask_account_number\": \"131****6520\"\r\n }\r\n ]\r\n },\r\n \"code\": 0,\r\n \"msg\": \"success\"\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":"{\r\n \"code\": 4001015,\r\n \"msg\": \"请求参数有误!\"\r\n}"}}}}}},"/gh/get_sub":{"post":{"x-target-id":"3c165db5ff6581","x-protocol":"http","summary":"获取游戏账户列表","description":"查询数据,限制必须是所属“直播平台归属”的限制;\n\n```json\n{\n \"code\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"user_name\": \"18249211177\", // 账户名\n \"game_id\": 344, // 游戏ID\n \"update_time\": 1765451451 // 修改时间\n },\n ]\n}\n```","tags":["SDK-H5/其他/直播平台"],"x-mark-id":"1","x-updated-at":"2026-04-29T15:14:37+08:00","x-updated-user-name":"wen","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"日期时间(为空则默认三个月)","example":"2026-02-02"},"timestamp":{"type":"string","description":"请求时间戳","example":"1765850279"},"sign":{"type":"string","description":"sign","example":"5e9af216c8af52d42df5ad571d286079"},"page":{"type":"number","description":"分页页码,数字类型","example":"10"},"limit":{"type":"number","description":"每页数量","example":"200"}},"required":["timestamp","sign","page","limit"]}}}},"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 \"user_name\": \"13028669555651\",\r\n \"game_id\": 344,\r\n \"update_time\": 1765336745\r\n },\r\n {\r\n \"user_name\": \"15987814926\",\r\n \"game_id\": 344,\r\n \"update_time\": 1760412788\r\n },\r\n {\r\n \"user_name\": \"13613359807\",\r\n \"game_id\": 344,\r\n \"update_time\": 1765275441\r\n },\r\n {\r\n \"user_name\": \"15550724899\",\r\n \"game_id\": 344,\r\n \"update_time\": 1765859283\r\n },\r\n {\r\n \"user_name\": \"13603066070\",\r\n \"game_id\": 344,\r\n \"update_time\": 1761108326\r\n }\r\n ],\r\n \"count\": 21227\r\n}"}}},"404":{"description":"失败","content":{"application/json":{"schema":{"type":"object","properties":{}},"example":""}}}}}},"ws://47.97.190.250:8282":{"x-3c5d25bbb0dd02a":{"x-target-id":"3c5d25bbb0dd02a","x-protocol":"websocket2","summary":"websocket","description":"\nwsConfigMessage\n","tags":["Python 分包"],"x-mark-id":"1","x-updated-at":"2023-10-17T15:13:51+08:00","x-updated-user-name":"wen","requestBody":{"content":{"x-3c5d25bbb0dd02a":{"x-mode":"text","x-summary":"消息","schema":{"type":"object"},"example":"","x-response":{"x-mode":"text","example":"","schema":{"type":"object"}}}}}}},"ws://121.199.47.173:8182/":{"x-3c5d25bbb0dd03c":{"x-target-id":"3c5d25bbb0dd03c","x-protocol":"websocket2","summary":"正式-连接","description":"\nwsConfigMessage\n","tags":["ws"],"x-mark-id":"1","x-updated-at":"2024-02-24T15:33:05+08:00","x-updated-user-name":"wen","parameters":[],"requestBody":{"content":{"x-3c5d25bbb0dd03c":{"x-mode":"text","x-summary":"消息","schema":{"type":"object"},"example":"","x-response":{"x-mode":"text","example":"","schema":{"type":"object"}}}}}}},"ws://127.0.0.1:8182":{"x-3c5d25bbb0dd065":{"x-target-id":"3c5d25bbb0dd065","x-protocol":"websocket2","summary":"本地-连接","description":"\nwsConfigMessage\n","tags":["ws"],"x-mark-id":"1","x-updated-at":"2025-02-08T17:53:38+08:00","x-updated-user-name":"wen","requestBody":{"content":{"x-3c5d25bbb0dd065":{"x-mode":"text","x-summary":"消息","schema":{"type":"object"},"example":"{\"action\":\"login\",\"data\":{\"token\":\"jgt760ju5rvttqh541ivl3mgdi\"}}","x-response":{"x-mode":"text","example":"","schema":{"type":"object"}}}}}}}},"servers":[{"url":"","description":"默认环境","x-env-id":"","variables":{"app_id":{"default":10,"description":""},"app_key":{"default":"41de3ee61130c41757c964a620c62e78","description":""},"client_appkey":{"default":"92bc14ea7313c6980ba0f3617d5ef8ff","description":""},"game_id":{"default":10,"description":""}}},{"url":"http://sdkapi.newsdk.com","description":"本地开发 - dev","x-env-id":"","variables":{"app_id":{"default":10,"description":""},"app_key":{"default":"dda26b4dab356247eb84193fe51baa97","description":""},"client_appkey":{"default":"92bc14ea7313c6980ba0f3617d5ef8ff","description":""},"cps_url":{"default":"http://devcpsapi.newsdk.cn","description":""},"game_id":{"default":10,"description":""},"sign_data":{"default":"yq4nz4SMYRoLn9Oct0F+Cn5MgZnTBqsUh8sHxb/DfT7OFr4A4QCEY0vAVQUmnot0QyZVrRpY485XWdzBk3iPdj2wdl6n27XOQ+gduMykt51ymO6XAcJj1UhyULgbdATI/1Lf1826yh/j5BFe+hAyM6twi/rgrzIegiqaqfb7X1aihHgHFRqkp+n+flmCFrB3Q1xx5Z53NdQllMechinurcFY8GKAnWysjYas1/bly0f9aAHT0N9Z6eu7El8XgiOxJqmkXjJPOLYSDLe6kJ1SDLJVRnRh1BmIYmcTNlZtxgHJcBB3bDwgZkkPF0Re6zQ/a8JHxRc+rDsrW+ycKpc0Mh6NxnJ+ar5saXyv25SBWdVN0ejyciTwX7P1Pt0iNUtS8qlsIrJX48WixrkaiCzRXQ==","description":""},"admin_url":{"default":"http://devadmin.newsdk.cn","description":""},"api_url":{"default":"http://sdkapi.newsdk.cn","description":""}}},{"url":"http://devsdkapi.7dgame.cn","description":"线上测试 - test","x-env-id":"","variables":{"app_id":{"default":20,"description":""},"app_key":{"default":"dda26b4dab356247eb84193fe51baa97","description":""},"client_appkey":{"default":"92bc14ea7313c6980ba0f3617d5ef8ff","description":""},"cps_url":{"default":"http://devcpsapi.qmgames.cn","description":""},"game_id":{"default":20,"description":""},"username":{"default":"test___87907411z","description":""},"admin_url":{"default":"http://devadmin.qmgames.cn","description":""},"api_url":{"default":"http://devsdkapi.qmgames.cn","description":""},"user_id":{"default":"9832","description":""}}},{"url":"http://sdkapi.7dgame.cn","description":"线上正式 - pro","x-env-id":"","variables":{"game_id":{"default":20,"description":""},"api_url":{"default":"http://sdkapi.qmgames.cn","description":""},"app_id":{"default":20,"description":""},"app_key":{"default":"dda26b4dab356247eb84193fe51baa97","description":""},"client_appkey":{"default":"92bc14ea7313c6980ba0f3617d5ef8ff","description":""}}},{"url":"http://sdkapi.sdkyehua.com","description":"夜画","x-env-id":"","variables":{}},{"url":"https://devsdkapi.7dgame.cn/","description":"祈点","x-env-id":"","variables":{}}]}