We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GET] https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}
Generate Session Id with body param request token in step 2
{"request_token":"68bd8789bfe7d3bc9bbaa6af8b3fca39bb9d3269"}
const fetch = require('node-fetch'); const url = 'https://api.themoviedb.org/3/authentication/session/new'; const options = { method: 'POST', headers: { accept: 'application/json', 'content-type': 'application/json', Authorization: 'Bearer ${API_AUTH_TOKEN}' }, body: JSON.stringify({request_token: '68bd8789bfe7d3bc9bbaa6af8b3fca39bb9d3269'}) }; fetch(url, options) .then(res => res.json()) .then(json => console.log(json)) .catch(err => console.error('error:' + err));
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
[GET] https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}
Generate Session Id with body param request token in step 2
The text was updated successfully, but these errors were encountered: