cURL
curl --request POST \ --url https://api.themoviedb.org/3/authentication/token/validate_with_login \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "username": "bisi", "password": "test123", "request_token": "65579224bd555f9fccda03941a3dcc53b606abee" } '
{ "success": true, "expires_at": "2024-12-16 22:49:51 UTC", "request_token": "65579224bd555f9fccda03941a3dcc53b606abee" }
This endpoint is used to validate a request token by entering a username and password.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The user's username.
The user's password.
A token to authenticate the request.
Successful response
Indicates success
Expiration time
Token for request