Does Uber server_token expires like access_token ?
Note: Access tokens are valid for 30 days. The expiration time is specified in seconds in the ‘expires_in’ key of the token payload.
Can't find any documentation on server_token. TIA
Does Uber server_token expires like access_token ?
Note: Access tokens are valid for 30 days. The expiration time is specified in seconds in the ‘expires_in’ key of the token payload.
Can't find any documentation on server_token. TIA
From official guideline Uber Authentication
{
"access_token": "xxx",
"token_type": "Bearer",
"expires_in": 2592000,
"refresh_token": "xxx",
"scope": "profile history"
}
The access_token is good for a
limited period
of time described by expires_in seconds. Therefresh_token does not expire
and can be used to obtain a new access_token at any time given that the calling application is still authorized to access the API on behalf of this user.
No, the server_token does not expire. The only way it can be changed is by generating a new one in your dashboard.