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": "@Nov022003", "request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17", "username": "gloriaSilver" } '
{ "expires_at": "2024-12-17 23:15:51 UTC", "request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17", "success": true }
This endpoint allows you to validate a request token by using a username and password.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents your password.
"@Nov022003"
This represents your request token.
"7ae547a16d3bba575359ceb2d6aa9e23525b1f17"
This represents your user name.
"gloriaSilver"
Create session ID(with login)
"2024-12-17 23:15:51 UTC"
true