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
I noticed in the code that you were using app.use(Body.Parser());
This has been deprecated and I found that it doesn't do the POST data correctly.
I changed it to
app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: true }));
and it POSTS just fine now.
Thanks so much for the tutorial. It's been a huge help in wrapping my head around Oauth2.
The text was updated successfully, but these errors were encountered:
Glad to hear you are finding it beneficial!
Thanks for reminding me to fix this. I had changed it in some local projects but not here. I also updated my tutorials.
Scott
Sorry, something went wrong.
No branches or pull requests
I noticed in the code that you were using app.use(Body.Parser());
This has been deprecated and I found that it doesn't do the POST data correctly.
I changed it to
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
and it POSTS just fine now.
Thanks so much for the tutorial. It's been a huge help in wrapping my head around Oauth2.
The text was updated successfully, but these errors were encountered: