跳到主要内容

账号数据下载相关(QueryDownloadStatus)

queryDownloadStatus 用于检查通过 DMCS 下载账号的状态。

请求参数

参数类型描述备注
openIDstringPlayer Network SDK 用户唯⼀标识
默认为 64-bit 无符号整数的字符串,也可以支持 32-bit
选填
uIDstring自建账号的 UID选填

请求示例

dsrApi.queryDownloadStatus(
{
openID:'136...152',
uID:'339...025',
}
).then((res) => {
console.log(res);
});

返回参数

参数类型描述
retnumber返回代码
0: 请求成功,解析相关返回的字段信息。
!=0: 请求失败,检查 msg 查看详细的退货信息。
msgstring结果说明
created_atint64最新请求创建时间戳
如果 status 为 0, created_at 为 0。
statusnumber账号下载状态
0: 没有记录或操作过期 (下载有效期为 30天)
1: 处理中
2: 完成
3: 失败
seqstring数据流消息序号

返回示例

{
created_at: "0",
msg: "intl_cluster is not yet deployed",
ret: 1,
seq: "1640266743-...-0010429252",
status: 0,
}