Authorization error
See original GitHub issueI’m getting an error with OAuth 2.0 when Passport is trying to fetch the user profile.
500 failed to fetch user profile (status: 401 data: { "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "Invalid Credentials", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Invalid Credentials" } } )
Issue Analytics
- State:
- Created 11 years ago
- Comments:15
Top Results From Across the Web
Authorization Errors | Device Access - Google Developers
During the authorization process, Google OAuth may return an error. Use this guide to troubleshoot the most common errors during this ...
Read more >Authorization Error - TIBCO Product Documentation
The authorization server returns an error response if the request processing fails. The processing of the request fails due to one of the...
Read more >Google Authorization Error - [Solved]
How to resolve the Google Authorization Error that occurs when opening Workspace Add-ons while logged into multiple Google Accounts.
Read more >How Do I Fix 403 Authorization Error? - Pearl Lemon Web
The status code 403 (Forbidden) indicates that the server understands the request but refuses to allow it. If the server receives authentication ......
Read more >Authorization errors - IBM
These errors relate to service account authorization. Authorization issues commonly occur when required permissions are not provided to the service account or ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Fixed this by specifying the following scope:
It would be good if this module automatically appended the
https://www.googleapis.com/auth/userinfo.profile
scope since it always needs it for profile.Thank you very much! You saved my whole day 😃