同步好友请求
简要描述:
同步好友请求
请求URL:
请求方式:
- POST
请求头Headers:
- Authorization: Bearer xxx(PS:xxx是代表login接口返回,Bearer后面有个空格,除了login接口,后续所有接口都携带此参数)
- Content-Type:application/json
参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
sessionId | 是 | string | |
seq | 否 | string | 请求返回,获取下一页数据 |
返回数据:
参数名 | 类型 | 说明 |
---|---|---|
code | number | 200成功,其他失败 |
msg | string | 反馈信息 |
data | object | 返回对象 |
data.seq | string | |
data.items[0].id | string | id |
data.items[0].contactId | string | 联系人id |
data.items[0].hello | string | 备注信息 |
data.items[0].timestamp | number | 时间戳 |
请求参数示例
{
"sessionId": "***",
"seq":"0"
}
成功返回示例
{
"msg": "操作成功",
"code": 200,
"data": {
"seq": "15376065",
"items": [
{
"id": "78***2145",
"contactId": "788***2145",
"hello": "",
"timestamp": 1685777966
}
]
}
}
错误返回示例
{
"msg": "session timeout or authentication token not found or invalid credit info",
"code": 500
}