-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UserHandle data is missing in Flutter FIDO Authentication result #356
Comments
@Talal0 Hi! )) What parameters do you specifically need? For example, there is a request that returns some data after authentication, you can try it. There is no UserHandler in the documentation // Then request for authentication class Fido2RegistrationResponse {AuthenticatorAttestationResponse? authenticatorAttestationResponse; class AuthenticatorAttestationResponse { |
@Taverz In Android(Google PlayStore) device I'm getting UserHandle in FIDO2 authenticator response that is required at my server side FIDO2 which we have handled it. Can you please share how to convert Huawei's object Uint8List data into JSON format? |
I'm not sure if there is JSON there. |
Perhaps there is some other format: final json = hex.encode(data); |
@Taverz already tried it all not working |
Description
I'm implementing Huawei FIDO Flutter plugin in my Flutter application. I have successfully registered the user using Huawei FIDO. In the authentication process, Huawei SDK returns an attested response from the authenticator, which doesn't include UserHandle in the object. My server-side FIDO requires UserHandle to complete the authentication process. I tried all possible options provided by Huawei documentation, but I'm unable to get the desired result.
Expected behavior
FIDO Authenticator should return UserHandle in the Authentication response
Current behavior
Not getting UserHandle in Huawei FIDO Authentication response.
Screenshots
Issue
Plugin
https://pub.dev/packages/huawei_fido
huawei_fido 6.3.0+305
Environment
(https://developer.huawei.com/consumer/en/doc/development/HMS-Plugin-References-V1/hms-fido2-client-0000001097330041-V1)
The text was updated successfully, but these errors were encountered: