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.
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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Create session ID(with login)
The response is of type object
.