You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Adds a passkey allowed to be used for the login by the current user and returns the added passkey. Call getPasskeyParameters to get parameters for creating of the passkey
/// Adds a passkey allowed to be used for the login by the current user and returns the added passkey. Call getPasskeyParameters to get parameters for creating of the passkey
/// Checks a passkey to log in to the corresponding account. Call getAuthenticationPasskeyParameters to get parameters for the passkey. Works only when the current authorization state is
15
+
/// authorizationStateWaitPhoneNumber or authorizationStateWaitOtherDeviceConfirmation, or if there is no pending authentication query and the current authorization state is
16
+
/// authorizationStateWaitPremiumPurchase, authorizationStateWaitEmailAddress, authorizationStateWaitEmailCode, authorizationStateWaitCode, authorizationStateWaitRegistration, or authorizationStateWaitPassword
/// Base64url-encoded identifier of the credential
34
+
/// </summary>
35
+
[JsonConverter(typeof(Converter))]
36
+
[JsonProperty("credential_id")]
37
+
publicstringCredentialId{get;set;}
38
+
39
+
/// <summary>
40
+
/// JSON-encoded client data
41
+
/// </summary>
42
+
[JsonConverter(typeof(Converter))]
43
+
[JsonProperty("client_data")]
44
+
publicstringClientData{get;set;}
45
+
46
+
/// <summary>
47
+
/// Authenticator data of the application that created the credential
48
+
/// </summary>
49
+
[JsonConverter(typeof(Converter))]
50
+
[JsonProperty("authenticator_data")]
51
+
publicbyte[]AuthenticatorData{get;set;}
52
+
53
+
/// <summary>
54
+
/// Cryptographic signature of the credential
55
+
/// </summary>
56
+
[JsonConverter(typeof(Converter))]
57
+
[JsonProperty("signature")]
58
+
publicbyte[]Signature{get;set;}
59
+
60
+
/// <summary>
61
+
/// User handle of the passkey
62
+
/// </summary>
63
+
[JsonConverter(typeof(Converter))]
64
+
[JsonProperty("user_handle")]
65
+
publicbyte[]UserHandle{get;set;}
66
+
}
67
+
68
+
/// <summary>
69
+
/// Checks a passkey to log in to the corresponding account. Call getAuthenticationPasskeyParameters to get parameters for the passkey. Works only when the current authorization state is
70
+
/// authorizationStateWaitPhoneNumber or authorizationStateWaitOtherDeviceConfirmation, or if there is no pending authentication query and the current authorization state is
71
+
/// authorizationStateWaitPremiumPurchase, authorizationStateWaitEmailAddress, authorizationStateWaitEmailCode, authorizationStateWaitCode, authorizationStateWaitRegistration, or authorizationStateWaitPassword
0 commit comments