flutter_web_auth
flutter_web_auth copied to clipboard
Flutter plugin for authenticating a user with a web service
Hi all , I am trying to implement Oauth that will redirect after to my same app after authentication. The issue was , the option to select redirect option appears...
The latest version of flutter is complaining about embedding: ``` The plugin `flutter_web_auth` uses a deprecated version of the Android embedding. To avoid unexpected runtime failures, or future build failures,...
With the webview_flutter plugin I handled this by overriding: ``` public override void OnReceivedSslError(Android.Webkit.WebView view, Android.Webkit.SslErrorHandler handler, Android.Net.Http.SslError error) { handler.Proceed(); } ``` Any alternative to this plugin?
Flow: 1. The Flutter app opens the IDP authenticate url in a Chrome Custom Tab. 2. The user presses the one tap login button which opens the authenticator app (using...
Hi, I am unable to redirect to the app after zoom authentication please anyone help me. Thanks in advance.
The login flow works, but the Chrome Tab doesn't close itself after the app scheme callback. Adding the NO_HISTORY flag leads to the callback not working correctly: the app receives...
Hey @LinusU, since this project is used by many flutter projects it's very important for the flutter ecosystem. What do you think about adding additional maintainers to the project in...
i have configured activity callback on my manifest but it's not called ` `
I've added the flutter plugin to pubspec.yaml and did a get. The activity shows as red. Is there something else I need to add so that I can add the...
When using "https" as android:scheme I do not get redirected back to my app after login. If I open the redirection url in chrome the app opens. Runnign adb shell...