跳到主要内容

发送收集数据验证码(SendCodeForDownloadAccount)

sendCodeForDownloadAccount 用于发送下载用户账号的验证码。验证电子邮件的验证码以获得任何用户数据。

请求参数

参数类型说明备注
openIDstringPlayer Network SDK 用户唯⼀标识
默认为 64-bit 无符号整数的字符串,也可以支持 32-bit
必填
tokenstringPlayer Network SDK 生成的用户 token
长度:40字节,详见 Token
必填
regionstringISO 3166-1 国家或地区的数字代码
例如 156 代表中国,040 代表奥地利
必填
emailstring用户电子邮件必填
uIDstring自建账号的 UID选填

请求示例

dsrApi.sendCodeForDownloadAccount(
{
openID:'136...152',
token:'2d5...f74',
email:'user@email.com',
region:'156',
uID:'339...025',
}
).then((res) => {
console.log(res);
});

返回参数

参数类型说明
retnumber返回代码
0: 请求成功,解析相关返回的字段信息。
!=0: 请求失败,检查 msg 查看详细的退货信息。
msgstring结果说明
expires_inint64验证码有效期
以秒为单位
seqstring数据流消息序号

返回示例

{
expires_in: 600,
msg: "success",
ret: 0,
seq: "1640314876-...-0000729568",
}