Transfer
JDB 平台 API
报表相关
Action 69:分享重播链接

Action 69:分享重播链接

功能说明

  • 支援的游戏,请参照附录: 老虎机支援重播连结游戏
    • 若遇游戏不支援重播,我方会回传 9025
  • 赢分需大于 0 (Buy Feature 游戏不在此限)
    • 若遇游戏纪录赢分小于或等于 0,我方会回传 9026
  • 仅支援 60 天内的游戏纪录
  • 回传的连结有效天数为 30 天

参数

参数格式强制说明
actionIntegerY69
tsLongY当前系统时间
parentString(50)Y代理账号
uidString(50)Y玩家账号
gTypeIntegerY游戏类型,仅支援游戏类型 0, 66
historyIdString(100)Y游戏序号
langStringN语系
尚未支援该语系的游戏将以英文预览 (Open Graph)

参照附录 语系代码

Example

{
  "action": 69,
  "ts": 1704790101741,
  "parent": "testag",
  "uid": "testplayer",
  "gType": 0,
  "historyId": 5250228856980,
  "lang": "en"
}

返回结果

参数格式说明
statusString(4)成功:0000

错误:参照附录 错误代码
urlString重播链接
err_textString(255)错误讯息

操作范例

// Http Request
http://{API_Address}/apiRequest.do?dc=jb1&x=y1wayxScczy6ABfElfaVwb5CdfHxBN_JGtxyBSvpohLQakP8M2QSetJNojJBzvnrVChhq8YWWgBTdGeXFTH4vSNQQ66epf4NqYeQ-6bJ15pvHctQjQevulv7GHqOifuju_gY0H54FfVdQc9D5tKh1AZ-9KDh9dwcGSszZxU7JOOoHdYITlCO5LhvGmHxPBwZ
 
// Http Response (success)
{
  "status": "0000",
  "url": "https://replayrd.jdsdl1688.com/38CA9E05EECD4727C1EB3F0C1A520529"
}
 
// Http Response (failed)
1. 若遇游戏不支援重播,我方会回传
{
    "status": "9025",
    "err_text": "Game is not support replay. historyId: 5250228948166 does not support replay"
}
 
2. 若遇游戏纪录赢分 <= 0 (Buy Feature 游戏不在此限),我方会回传:
{
    "status": "9026",
    "err_text": "The win amount should be greater than 0. historyId: 5250228948203 is not shareable"
}