1. Create a new request token
This endpoint is used to generate a request token. It can be used to validate a TMDB user login.- A temporary request token is generated.
- The token is valid for 60 minutes.
- This token must be authenticated by the user in the next step.
2. Authenticate the request token
Before creating your session, you must authenticate your token.- The user will be asked to approve or deny the token.
- If approved, the token is now authenticated and can be used to create a session.
3. Create a new session id
Once the request token is authenticated, exchange it for a session ID.You should treat this key like a password and keep it secret.