简体   繁体   English

在 Flutter 中获取用户指纹详细信息

[英]Get User FingerPrint Details in Flutter

I have an android application for which I want to get fingerprints of users using a mobile sensor and verify the details through my API, not local authentication.我有一个 android 应用程序,我想使用移动传感器获取用户的指纹并通过我的 API 验证详细信息,而不是本地身份验证。 How can achieve that?怎样才能做到这一点? From android, I just need the sensor to capture finger details.从 android 开始,我只需要传感器来捕捉手指细节。

Try using this package: https://pub.dev/packages/local_auth尝试使用这个 package: https://pub.dev/packages/local_auth

 var localAuth = LocalAuthentication();
bool didAuthenticate =
    await localAuth.authenticate(
        localizedReason: 'Please authenticate to show account balance');

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM