https://xxxxxx/v4/sns/friend_check?sdkappid=88888888&identifier=admin&usersig=xxx&random=99999999&contenttype=json
Parameter | Description |
xxxxxx | Domain name corresponding to the country/region where your SDKAppID is located. China: console.tim.qq.com Singapore: adminapisgp.im.qcloud.com Seoul: adminapikr.im.qcloud.com Frankfurt: adminapiger.im.qcloud.com Silicon Valley: adminapiusa.im.qcloud.com |
v4/sns/friend_check | Request API |
sdkappid | SDKAppID assigned by the Chat console when an app is created |
identifier | |
usersig | |
random | A random 32-bit unsigned integer ranging from 0 to 4294967295. |
contenttype | Request format, which should always be json . |
{"From_Account":"id","To_Account":["id1","id2","id3","id4","id5"],"CheckType":"CheckResult_Type_Both"}
Field | Type | Required | Description |
From_Account | String | Yes | The UserID of the account that requests to check friendship |
To_Account | Array | Yes | The UserIDs of the friends to be checked. Each request cannot contain more than 1,000 UserIDs. |
CheckType | String | Yes |
{"InfoItem": [{"To_Account": "id1","Relation": "CheckResult_Type_BothWay","ResultCode": 0,"ResultInfo": ""},{"To_Account": "id2","Relation": "CheckResult_Type_AWithB","ResultCode": 0,"ResultInfo": ""},{"To_Account": "id3","Relation": "CheckResult_Type_BWithA","ResultCode": 0,"ResultInfo": ""},{"To_Account": "id4","Relation": "CheckResult_Type_NoRelation","ResultCode": 0,"ResultInfo": ""},{"To_Account": "id5","Relation": "CheckResult_Type_NoRelation","ResultCode": 30006,"ResultInfo": "Err_SNS_FriendCheck_Check_Relation_Exec_Task_Fail"}],"Fail_Account": ["id5"],"ActionStatus": "OK","ErrorCode": 0,"ErrorInfo": "","ErrorDisplay": ""}
Field | Type | Description |
InfoItem | Array | The object array of verification results |
To_Account | String | The UserID of the account that you requested to check |
Relation | String | The friend relationship between To_Account and From_Account upon successful verification. For details, see Verifying friends. |
ResultCode | Integer | The process result of To_Account . 0 : successful. Other values: failed. For details on non-zero results, see Error Codes. |
ResultInfo | String | The error description of To_Account . This field is empty if the request succeeds. |
Fail_Account | Array | The users that failed to be verified. This field is only returned when at least one user fails. |
ActionStatus | String | The request result. OK : successful. FAIL : failed. |
ErrorCode | Integer | |
ErrorInfo | String | Detailed error information |
ErrorDisplay | String | Detailed information displayed on the client |
ResultCode
, ResultInfo
, ErrorCode
, and ErrorInfo
.
For public error codes (60000 to 79999), please see Error Codes.
The following table describes the error codes specific to this API:Error Code | Description |
30001 | Incorrect request parameter. Check your request according to the error description. |
30003 | The requested account does not exist. |
30004 | The request requires app admin permissions. |
30006 | Internal server error. Try again. |
30007 | Network timeout. Try again later. |
Was this page helpful?