cURL
curl --request POST \ --url https://api.themoviedb.org/3/authentication/session/new \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "request_token": "97e8b69a2897f0b530ccb46c5cb352dd0a387e7c" } '
{ "session_id": "7274a757c27767f63eda2c6599afd5b280047f2d", "success": true }
This endpoint create the session id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This is a temporary credential used in the authentication process.
"97e8b69a2897f0b530ccb46c5cb352dd0a387e7c"
create session
A token that represents a logged-in user's session after they have authenticated with their TMDB account.
"7274a757c27767f63eda2c6599afd5b280047f2d"
This shows whether the output was a success or failure.
true