curl --request POST \
--url https://api.themoviedb.org/3/authentication/session/convert/4 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"access_token": "{{read_access_token}}"
}'
This response has no body data.
Create a Session (from v4 Token)
curl --request POST \
--url https://api.themoviedb.org/3/authentication/session/convert/4 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"access_token": "{{read_access_token}}"
}'
This response has no body data.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.