Skip to content

Commit 0c042b1

Browse files
authored
remove retrieveUserUsingJWT client method (#178)
ENG-3720
1 parent fff87b9 commit 0c042b1

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

src/main/java/io/fusionauth/client/FusionAuthClient.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4870,20 +4870,6 @@ public ClientResponse<RecentLoginResponse, Errors> retrieveUserRecentLogins(UUID
48704870
.go();
48714871
}
48724872

4873-
/**
4874-
* Retrieves the user for the given Id. This method does not use an API key, instead it uses a JSON Web Token (JWT) for authentication.
4875-
*
4876-
* @param encodedJWT The encoded JWT (access token).
4877-
* @return The ClientResponse object.
4878-
*/
4879-
public ClientResponse<UserResponse, Errors> retrieveUserUsingJWT(String encodedJWT) {
4880-
return startAnonymous(UserResponse.class, Errors.class)
4881-
.uri("/api/user")
4882-
.authorization("Bearer " + encodedJWT)
4883-
.get()
4884-
.go();
4885-
}
4886-
48874873
/**
48884874
* Retrieves the FusionAuth version string.
48894875
*

0 commit comments

Comments
 (0)