Sometimes, you may need to obtain the list of server IP addresses for security purposes. The app admin can use this API to obtain the list of server IP addresses or IP ranges used by the SDK and webhook.
Note:This API only supports obtaining the IP addresses or IP ranges of all Chat service integration methods in the Chinese mainland. (To obtain the IP addresses or IP ranges of specific integration methods outside the Chinese mainland, contact us to enable this feature. We will assess your needs based on your application and enable this feature for you if appropriate.)
https://xxxxxx/v4/ConfigSvc/GetIPList?sdkappid=88888888&identifier=admin&usersig=xxx&random=99999999&contenttype=json&nettype=0
The following table describes the modified parameters when this API is called. For other parameters, see RESTful API Overview.
Parameter | Description |
---|---|
xxxxxx | Domain name corresponding to the country/region where your SDKAppID is located.console.tim.qq.com adminapisgp.im.qcloud.com adminapikr.im.qcloud.com adminapiger.im.qcloud.com adminapiind.im.qcloud.com adminapiusa.im.qcloud.com |
v4/ConfigSvc/GetIPList | Request API |
sdkappid | SDKAppID assigned by the Chat console when an app is created |
identifier | App admin account. For more information, see the App Admin section in Login Authentication. |
usersig | Signature generated by the app admin account. For details, see Generating UserSig. |
random | A random 32-bit unsigned integer ranging from 0 to 4294967295. |
contenttype | Request format. The value is fixed to json . |
nettype | Request a list of server IP addresses of a specified type: |
Note:For the webhook business, the business server needs to add the Chat service egress addresses to the allowlist. You can set
nettype
to 5 (or 6) according to the business server address region to get the list of Chat service egress addresses.
200 calls per second
{}
{
"ActionStatus": "OK",
"ErrorCode": 0,
"IPList": [ "127.0.0.2", "183.192.202.0/25" ]
}
Field | Type | Description |
---|---|---|
IPList | Array | List of server IP addresses |
ErrorCode | Integer | Error code. 0 : Successful; other values: Failed |
ErrorInfo | String | Error information |
The returned HTTP status code for this API is always 200 unless a network error (such as error 502) occurs. The specific error code and details can be found in the response fields ErrorCode
and ErrorInfo
respectively.
For public error codes (60000 to 79999), see Error Codes.
Use the RESTful API online debugging tool to debug this API.
Was this page helpful?