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
Copy file name to clipboardExpand all lines: EXAMPLES.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1242,4 +1242,5 @@ You might encounter errors similar to `PKIX path building failed: sun.security.p
1242
1242
The rules should be applied automatically if your application is using `minifyEnabled = true`. If you want to include them manually check the [proguard directory](proguard).
1243
1243
By default you should at least use the following files:
Copy file name to clipboardExpand all lines: auth0/src/main/java/com/auth0/android/authentication/AuthenticationAPIClient.kt
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,8 @@ public class AuthenticationAPIClient @VisibleForTesting(otherwise = VisibleForTe
157
157
/**
158
158
* Log in a user using passkeys.
159
159
* This should be called after the client has received the Passkey challenge and Auth-session from the server .
160
-
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types) to learn how to enable it.
160
+
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types)
161
+
* to learn how to enable it.
161
162
*
162
163
* @param authSession the auth session received from the server as part of the public challenge request.
163
164
* @param authResponse the public key credential response to be sent to the server
@@ -185,7 +186,8 @@ public class AuthenticationAPIClient @VisibleForTesting(otherwise = VisibleForTe
185
186
186
187
/**
187
188
* Register a user and returns a challenge.
188
-
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types) to learn how to enable it.
189
+
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types)
190
+
* to learn how to enable it.
189
191
*
190
192
* @param userMetadata user information of the client
191
193
* @param parameters additional parameter to be sent as part of the request
@@ -220,7 +222,8 @@ public class AuthenticationAPIClient @VisibleForTesting(otherwise = VisibleForTe
220
222
221
223
/**
222
224
* Request for a challenge to initiate a passkey login flow
223
-
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types) to learn how to enable it.
225
+
* Requires the client to have the **Passkey** Grant Type enabled. See [Client Grant Types](https://auth0.com/docs/clients/client-grant-types)
226
+
* to learn how to enable it.
224
227
*
225
228
* @param realm An optional connection name
226
229
* @return a request to configure and start that will yield [PasskeyChallengeResponse]
0 commit comments