cURL
curl --request POST \ --url https://api.themoviedb.org/3/authentication/session/new \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "password": "@Nov022003", "request_token": "fcb53897ef777a93830818bfc428be6cd6ef962d", "username": "gloriaSilver" } '
{ "session_id": "6c8994060cf089b2d444fd0ceee13699fa354196", "success": true }
This endpoint allows you to create a session ID with your request token.
Check this section for more information about session_id.
session_id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents your password.
"@Nov022003"
This represents your request token.
"fcb53897ef777a93830818bfc428be6cd6ef962d"
This represents your user name.
"gloriaSilver"
Create Session ID
"6c8994060cf089b2d444fd0ceee13699fa354196"
true