接口说明
该方式仅支持抽奖类的玩法,老带新和一起赢奖励不支持, S2S方式支持所有玩法:服务器的奖品监听回调
监听事件名称
linkRewardListener
功能描述
在我们的活动后台,可以对用户完成任务后的奖品信息设置键值对,键值对对应 APP 平台奖品 ID 等信息。
当用户完成任务后,我们通过 H5 页面调用 APP 监听事件来发放奖品,APP 收到奖品键值对通过向 APP 服务器完成对用户的发奖。
调用方式
请求参数:
{
"reward_name": "活动标题",
"reward_image": "https://i1.branchcn.com/resource/2023/06/09/ci0vs3t5tde4qpi4opp0.png",
"reward_timestamp": 1687918021,
"campaign_id": 9384726,
"app_user_id": "fdfJDeja32fdf",
"redirect_url": "https://dashboard.turbolink.cc/",
"custom_params": [
{
"key": "couponId",
"value": "38194"
},
{
"key": "couponId",
"value": "38421"
}
]
}
参数说明:
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
reward_name | 是 | string | 活动名称 |
reward_image | 是 | string | 活动奖品图片 |
reward_timestamp | 是 | uint64 | H5 发送监听事件的时间戳 |
campaign_id | 是 | uint64 | 活动 ID |
app_user_id | 是 | string | APP 参与活动的用户 ID |
redirect_url | 是 | string | 活动获奖后跳转的 URL |
custom_params | 是 | array(object) | 活动后台配置的奖品键值对 |
custom_params.key | 是 | string | 活动后台配置的奖品键 |
custom_params.value | 是 | string | 活动后台配置的奖品值 |