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