There is issue with getting back the user info from Auth0
See original GitHub issueIt seems like resp_json[“email”] is empty (in fact resp_json at all) when you are trying to log in with using Auth0. I debugged with access_token which one was returned in the code and it seems like the response from auth0 is empty (even for curl). Such an issue could happen if you don’t pass ‘scope’ param to the Auth0 (see authorize endpoint - there should be at least ‘email’).
c.Auht0OAuthenticator.scope = ['openid', 'email']
If add such a line it works fine.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:3
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Check Login and Logout Issues - Auth0
Learn how to check login and logout to troubleshoot issues. ... It may not be returning information about the user. If you're using...
Read more >User info does not return identities - Auth0 Community
I'm trying to get a list of linked accounts, but userinfo does not return identities. Here is My token request:
Read more >Auth0 getUserInfo does not return all user data
Auth0 now uses getUserInfo based on claims, however, 'profile' claim does not return identities.
Read more >Not retrieving the user profile - Auth0 Community
I am not retrieving the user profile in the auth0 ios app how to get the data in userInfo. email : nil emailverified...
Read more >getUser Method Not Returning All User Information
The first issue we ran into was that the access tokens were not including all the information we wanted. By setting the scope...
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 FreeTop 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
Top GitHub Comments
Please mind the typo in YOxan answer: it should read:
c.Auth0OAuthenticator.scope = ['openid', 'email']
I’m closing this as it’s quite old and it’s a support issue. If you’re still having problems please post on the Jupyter Community Forum. Thanks!