curl --request POST \
--url https://api.themoviedb.org/authentication/token/validate_with_login \
--header 'Content-Type: application/json' \
--data '{
"password": "{{password}}",
"request_token": "{{request_token}}",
"username": "samyben"
}'
{
"expires_at": "2025-01-07 15:55:15 UTC",
"request_token": "59fc52561782a55fcfbc4e0085bf6b99eb985291",
"success": true
}
This endpoint validates the request token with the user’s credentials such as Username, Password and Request Token.
curl --request POST \
--url https://api.themoviedb.org/authentication/token/validate_with_login \
--header 'Content-Type: application/json' \
--data '{
"password": "{{password}}",
"request_token": "{{request_token}}",
"username": "samyben"
}'
{
"expires_at": "2025-01-07 15:55:15 UTC",
"request_token": "59fc52561782a55fcfbc4e0085bf6b99eb985291",
"success": true
}
This is the Key you were given when you signed up TMDb account
"63365ecd10409ee95d673fd7f8c095e3"
Validate Request Token with Login
The response is of type object
.