InterviewSolution
| 1. |
Does The Oauth Access Token Expire? |
|
Answer» After the lifetime that is specified in the expires_in parameter has elapsed, the OAuth access token is no longer valid. When that occurs, any ATTEMPT to use the expired OAuth access token RESULTS in an OAuth 2.0 Authentication Management API response with the HTTP Status Code of 401 Unauthorized. A developer must PROVIDE logic in their app to handle CONDITIONS when the expired OAuth access token may be used. After the lifetime that is specified in the expires_in parameter has elapsed, the OAuth access token is no longer valid. When that occurs, any attempt to use the expired OAuth access token results in an OAuth 2.0 Authentication Management API response with the HTTP Status Code of 401 Unauthorized. A developer must provide logic in their app to handle conditions when the expired OAuth access token may be used. |
|