cURL
curl --request POST \ --url https://api.themoviedb.org/4/auth/access_token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "request_token": "1e2345678" } '
{ "success": true, "status_code": 1, "status_message": "Success", "account_id": "abcdefg123456", "access_token": "1e2345678tyui87654" }
This endpoint is used to create a access token.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Token for request.
Successful response
Indicates success
A numeric code indicating the result of the request.
A message providing additional details about the response status.
Account ID of the user
Token for access