POST
/
3
/
authentication
/
token
/
validate_with_login
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json

Create session ID(with login)

The response is of type object.