Get the Authorization token Token Authentication and Obtain
Get token and add it to request header for other API. Token will be expired after 24 hours. If you applied again within validation period, the original token will be expired after another 24 hours.
Request Body Params application/json
Contact us to get your APPKey.
Contact us to get your APPSecret.
{
"APPKey" : "YK/9/KasbUt0hAod6W5HEg" ,
"APPSecret" : "l5uzAdirgEduBNQXOfec7w"
}
Request samples curl --location --request POST 'https://api.airudder.com/service/cloud/auth' \
--header 'User-Agent: Airudder' \
--header 'Content-Type: application/json' \
--data-raw '{
"APPKey": "YK/9/KasbUt0hAod6W5HEg",
"APPSecret": "l5uzAdirgEduBNQXOfec7w"
}'
Responses application/json Generate Code
Allowed values: 200 403 500 401
{
"data" : {
"token" : "3Ksb9EkFDQHBhAbvYDTq4+pGGjNRAuLtPF9MMt9E97hX+OgLWTme"
} ,
"status" : "OK" ,
"code" : 200
}
Modified at 2022-11-23 09:44:44