Skip to content

Commit 0a39a69

Browse files
authored
remove retrieveUserUsingJWT client method (#63)
ENG-3720
1 parent 9522a5c commit 0a39a69

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

src/main/python/fusionauth/fusionauth_client.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4000,18 +4000,6 @@ def retrieve_user_recent_logins(self, user_id, offset, limit):
40004000
.get() \
40014001
.go()
40024002

4003-
def retrieve_user_using_jwt(self, encoded_jwt):
4004-
"""
4005-
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.
4006-
4007-
Attributes:
4008-
encoded_jwt: The encoded JWT (access token).
4009-
"""
4010-
return self.start_anonymous().uri('/api/user') \
4011-
.authorization("Bearer " + encoded_jwt) \
4012-
.get() \
4013-
.go()
4014-
40154003
def retrieve_version(self):
40164004
"""
40174005
Retrieves the FusionAuth version string.

0 commit comments

Comments
 (0)