I am working on getting auth0 integrated into my app.
Per client request, I am trying to not to use the built in workflows or a plugin I am testing. I am trying to I call the login page directly from a url. That is working. After that step, it returns them to the callback page with the access token in the url.
/sign-up#access_token=....
From there, I need to login the user on the bubble app. I want to look up their email which I think I can find using this call:
https://auth0.com/docs/api/authentication#user-profile
I am also not sure how I can format the API call correctly here. This is from the docs. They want to pass a param that has the access token in it, but with a prefix "Bearer "
GET https://site-staging.us.auth0.com/userinfo
Authorization: âBearer {ACCESS_TOKEN}â
I am having trouble getting the API call to initialize, always getting a 401 error or then it started saying âThere was an issue setting up your call. undefined error: this header name is not correct undefinedâ ⌠Have tried several options for the headers / parameters.
Another try: