Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/main/python/fusionauth/fusionauth_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4000,18 +4000,6 @@ def retrieve_user_recent_logins(self, user_id, offset, limit):
.get() \
.go()

def retrieve_user_using_jwt(self, encoded_jwt):
"""
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.

Attributes:
encoded_jwt: The encoded JWT (access token).
"""
return self.start_anonymous().uri('/api/user') \
.authorization("Bearer " + encoded_jwt) \
.get() \
.go()

def retrieve_version(self):
"""
Retrieves the FusionAuth version string.
Expand Down