AUTHENTICATION
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 ' { "password": "33u4ut78", "request_token": "494a2598df9b563a3a54a2bbcde2a738654a5c49", "username": "John Doe" } '
{ "expires_at": "2024-12-26 16:17:26 UTC", "request_token": "494a2598df9b563a3a54a2bbcde2a738654a5c49", "success": true }
This endpoint allow users 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 password to user's account
"33u4ut78"
A temporary credential used in the authentication process.
"494a2598df9b563a3a54a2bbcde2a738654a5c49"
the user's username
"John Doe"
Validate Request Token with login
"2024-12-26 16:17:26 UTC"
true