请求方式:POST。
plaintext
服务地址/v3/device/account/query
接口服务地址与服务接入点一一对应,请选择与您的应用服务接入点对应的 服务地址。
接口功能:查询 Account 与 Token 的绑定关系。
参数名 | 类型 | 是否必需 | 参数说明 |
---|---|---|---|
operator_type | Integer | 是 | 操作类型: |
account_list | Array | 否 | 当 operator_type = 1 时有效且必填,待查询 Account 列表每个元素含一组 Account 。 具体示例如下:[{"account":"account1"},{"account":"account2"}] |
token_list | Array | 否 | 当 operator_type = 2 时有效且必填待查询 Token 的列表 |
参数名 | 类型 | 参数说明 |
---|---|---|
retCode | Integer | 错误码,详细参照 错误码对照表 |
errMsg | String | 错误信息 |
account_tokens | Array | Account 到 Token 的映射关系数组。示例如下:[{"account":"account1","token_list":["token1","token2"]}{"account":"account2","token_list":["token2","token3"]} ] |
token_accounts | Array | Token 到 Account 的映射关系数组。示例如下:[{"token":"token1","account_list":[{"account":"926@126.com"},{"account":"1527000000",}]}, {"token":"token2","account_list":[{"account":"926@163.com"},{"account":"1527000001"}]}] |
json
{
"operator_type": 1,
"account_list": [
{
"account": "account1"
},
{
"account": "account2"
}
]
}
json
{
"operator_type": 2,
"token_list": [
"token1",
"token2"
]
}
json
{
"retCode": 0,
"errMsg": "ok",
"result": [
"0",
"0"
],
"account_tokens": [
{
"account": "account1",
"token_list": [
"token1",
"token2"
]
},
{
"account": "account2",
"token_list": [
"token2",
"token3"
]
}
]
}
json
{
"retCode": 0,
"errMsg": "ok",
"result": [
"0",
"0"
],
"token_accounts": [
{
"token": "token1",
"account_list": [
{
"account": "926@126.com"
},
{
"account": "1527000000"
}
]
},
{
"token": "token2",
"account_list": [
{
"account": "926@163.com"
},
{
"account": "1527000001"
}
]
}
]
}
本页内容是否解决了您的问题?