跳到主要内容

获取映射列表(QueryMapByThirdInfo)

queryMapByThirdInfo API 用于获取基于已映射的第三方渠道信息的自建账号 UID 。

请求参数

参数类型描述备注
third_typestring第三方渠道类型:
discord
epic
facebook
google
ps5
steam
twitch
必填
channel_infoobject第三方通道的通道信息
更多信息,请参见 通道信息
必填

请求示例

accountApi.queryMapByThirdInfo({
third_type:'facebook',
channel_info:{
access_token: "xxxxxx",
},
}).then(
(res) => {
console.log(res);
}
);

返回参数

参数类型描述
retnumber返回代码
0: 请求成功,解析相关返回的字段信息。
!=0: 请求失败,检查 msg 查看详细的退货信息。
msgstring结果说明
sacc_uidstring自建账号的 UID
need_authboolean是否需要登录自建账号
seqstring数据流消息序号

返回示例

{
ret: 0,
msg: "success",
extra_field: "",
need_auth: false,
sacc_uid: "496...191",
seq: "1639127682-0343981578-017518-0001975655",
uid_list: [],
}