You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
I try to integrate Auth0 with my Ionic app and test it using iOS (simulator and device)
However, currently I'm hung up with the following situation:
Auth0 Hosted Login page is presented and I can enter my credentials. On clicking on the login button,
the spinner in the button appears and stays.
In the XCode console I can see the following
[APP IDENTIFIER]:https://[AUTH0 DOMAIN]/cordova/[APP IDENTIFIER]/callback?code=[CODE]&state=[STATE]
An in the Auth0 Dashboard I can see a successful login.
However nothing else happens...
I've included the following in the platform ready callback in my app.component.ts:
(window as any).handleOpenURL = (url: string) => {
console.log(url);
Auth0Cordova.onRedirectUri(url);
}
Any ideas how to debug?
The text was updated successfully, but these errors were encountered:
Ok, I tried using the Ionic Deeplinks Plugin and can get the redirect URL.
I can call Auth0Cordova.onRedirectUri inside the deeplink callback but nothing happens.
The SafariViewController window gets not hidden and the authorize callback is never fired.
I try to integrate Auth0 with my Ionic app and test it using iOS (simulator and device)
However, currently I'm hung up with the following situation:
Auth0 Hosted Login page is presented and I can enter my credentials. On clicking on the login button,
the spinner in the button appears and stays.
In the XCode console I can see the following
[APP IDENTIFIER]:https://[AUTH0 DOMAIN]/cordova/[APP IDENTIFIER]/callback?code=[CODE]&state=[STATE]
An in the Auth0 Dashboard I can see a successful login.
However nothing else happens...
I've included the following in the platform ready callback in my app.component.ts:
(window as any).handleOpenURL = (url: string) => {
console.log(url);
Auth0Cordova.onRedirectUri(url);
}
Any ideas how to debug?
The text was updated successfully, but these errors were encountered: