Closed fungc-io closed 10 months ago
I followed official get started tutorial and created an iOS app.
ionic start
npx cap add ios
pod install
npx cap run ios
And then install @authgear/web
.
@authgear/web
uses window.location.href = REDIRECT_URI
under the hood. Capacitor handles this by opening the external browser. This is not something what we want to deliver.
In this Auth0 tutorial, @capacitor/browser
is recommended. However, SFSafariViewController is used under the hood. Our React Native SDK and Flutter SDK uses ASWebAuthenticationSession. This means we need to develop a Capacitor SDK.
@louischan-oursky How long to you estimate needed to add biometric to the SDKs for iOS and Android?
2 days
I have done some research on PWA in the context of an Ionic app. Here are my findings.
@authgear/web
and @authgear/capacitor
simultaneously in an Ionic app. One important thing to note is that even the Ionic is not PWA, an Ionic app itself can always be run on a web browser already. So what we need to do is the same, to educate the developer to integrate @authgear/web
and @authgear/capacitor
in their Ionic app.released