Skip to content

Commit 7d65b54

Browse files
committed
Removed the unused WebClientProvider class
1 parent cd55aa7 commit 7d65b54

File tree

3 files changed

+5
-32
lines changed

3 files changed

+5
-32
lines changed

EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ authentication
545545

546546
This feature allows you to authenticate a user in a web session using the refresh token obtained from the native session without requiring the user to log in again.
547547

548-
Call the API to fetch a webSessionTransferToken in exchange for a refresh token. Use the obtained token to authenticate the user by calling the `/authorize` end point by passing as a query parameter or a cookie value.
548+
Call the API to fetch a webSessionTransferToken in exchange for a refresh token. Use the obtained token to authenticate the user by calling the `/authorize` endpoint, passing the token as a query parameter or a cookie value.
549549

550550
```kotlin
551551
authentication

auth0/src/main/java/com/auth0/android/provider/WebClientProvider.kt

Lines changed: 0 additions & 27 deletions
This file was deleted.

auth0/src/main/java/com/auth0/android/result/SSOCredentials.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package com.auth0.android.result
33
import com.google.gson.annotations.SerializedName
44

55
/**
6-
* Holds the token credentials required for web SSO .
6+
* Holds the token credentials required for web SSO.
77
*/
88
public data class SSOCredentials(
99
/**
10-
* The token used for web SSO .
10+
* The token used for web SSO.
1111
*
1212
* @return the session transfer token.
1313
*/
@@ -30,7 +30,7 @@ public data class SSOCredentials(
3030
@field:SerializedName("id_token") public val idToken: String,
3131

3232
/**
33-
* Type of the token issued.In this case, an Auth0 session transfer token
33+
* Type of the token issued. In this case, an Auth0 session transfer token.
3434
*
3535
* @return the issued token type.
3636
*/
@@ -47,7 +47,7 @@ public data class SSOCredentials(
4747

4848
/**
4949
* Expiration duration of the session transfer token in seconds. Session transfer tokens are short-lived and expire after a few minutes.
50-
* Once expired, the session transfer tokens can no longer be used for web SSO.
50+
* Once expired, the session transfer tokens can no longer be used for web SSO.
5151
*
5252
* @return the expiration duration of this session transfer token
5353
*/

0 commit comments

Comments
 (0)