Request Format Description
Request Mode
POST(HTTPS)
Resource URL
https://Domain_name_of_the_authentication_interface/sso/oauth2/getAllUser
Request Header
Content-Type: application/json
Request Parameter
Parameter |
Name |
Type |
Description |
|---|---|---|---|
client_id |
Application ID |
String |
Registration ID of the client application (The input parameter is stored in the server configuration file during the DevKit installation.). |
access_token |
Authentication token |
String |
Token authorization code |
user_list |
List of all users |
List<String> |
UID list of all users. |
Request Example
curl -X POST
https://Domain_name_of_the_authentication_interface/auth/sso/oauth2/getAllUser
-H 'Content-Type: application/json'
-d '{
"client_id": "20221017000000001",
"access_token": "*******************************",
"user_list": ["1","2"]
}'
Parent topic: Obtaining Valid Information About All Users