I am using local_auth library for fingerprint authentication. Is there any way to authenticate user without any pop-up dialog, just listens authentication when opens the page (initializes at initState)
There is a plug in Invisible Authentication that might be just the thing you want. There is no pop dialog for authentication.
Hope it helps.
Related
I'm using Google One Tap to login into my app.
But if I wanna stay in my session even when I close the browser, is that possible?
because the response of google One Tap with javascript has a JWT with expiration.
so how could I achieve this?
Is there any way that i can authenticate a user in my dapp using metamask (using popup like in web ? )
Read this chain it has some points to move you forward.
https://github.com/MetaMask/metamask-mobile/issues/3735
I'm learning flutter webview. I want to authenticate with my fingerprint.
The site that I wrap in webview is written in Laravel. I use local_auth 1.1.11 as an authorization plugin.
How can I combine this plugin and authorization on a site that is wrapped in a webview.
At the moment, I'm thinking of setting up the application on the side of the flutter itself (the checkbox, when enabled, will enable authentication using a fingerprint), but where to go next? If I make this setting, how can I authorize on the webview site when scanning a fingerprint?
As I understand it, it would be a bad idea to manually enter the login password in the same settings on the flutter side and then send this data to the site as inputs when scanning the fingerprint? Please help and tell me in which direction to move and how it can be implemented.
I have added a login button to my site anad added scope to publish actions as per guide i found here: developers.facebook.com/docs/reference/plugins/login/ and this works fine but my question is: How can i have same function but this prompt to show to users without needing to click on the Login Button.
If user has not installed app, he would be prompted automatically to install it.
Thanks for any help.
Use FB.getLoginStatus of the JavaScript SDK to see if you have a user connected to your app visiting your page. If not, redirect them to the server-side auth dialog (using client-side auth would not be a good idea, since most browsers will block a popup that’s opened without any actual user interaction).
I am trying to use new enhanced auth dialog instead of old one in a new application,
I want to first of all display a page with a message to the user, then he can click on a button and then he have the enhanced auth dialog.
My worries are when i set up my new application, the auth dialog v2 is displayed and then if the user accept permissions, then he is redirected to my home.php.
Is it possible to use enhanced auth dialog but first of all displaying a page which inform about the application?
Thanks! :-)
Yes it is possible to first display a page to the user before putting up the auth dialog. I have a current production app that does just that.
In your app, have a connect button of your own making that you display to the user when they are not connected to Facebook.
When a user clicks it, redirect to the page you want to show them with the special wording.
On that special page, have the real facebook login button (or a button/link that fires off FB.login())
Well, I have found the answer.
If you don't want that Facebook display the enhanced auth dialog before your application, but do it manually, when you want,
in your app settings, in "auth dialog" tab, don't write anyting in "Authenticated Referrals" !
And that's all :-)