Hi guys, long time lurker first time poster here:)
I have successfully put together Expo and Auth0. Worked like a charm until used iPhone simulator instead of real phone.
I use Authorization Code Flow with PKCE and this code:
const useProxy = Platform.select({ web: false, default: true });
const redirectUri = AuthSession.makeRedirectUri({ useProxy });
throws a nasty exception
No default redirect URL could be found. If you're using the bare workflow, you'll need to provide this yourself.
* http://127.0.0.1:19001/node_modules/expo/AppEntry.bundle?platform=ios&dev=true&hot=false&minify=false:224850:23 in getRedirectUrl
* http://127.0.0.1:19001/node_modules/expo/AppEntry.bundle?platform=ios&dev=true&hot=false&minify=false:221193:44 in makeRedirectUri
So how come? It works on a real phone but does not on a simulator? No eject has been done, still managed expo workflow
Any ideas or thoughts on this?
I ve read AuthSession docs form the letter A to the letter Z. Did I miss something?
Would be more than happy to hear you out
many thanks in advance!