Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added GetUser method that supports a JWT. #39

Merged
merged 3 commits into from
Oct 27, 2022
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
17 changes: 17 additions & 0 deletions Gotrue/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,23 @@ public async Task<User> GetUserById(string jwt, string userId)
throw ExceptionHandler.Parse(ex);
}
}

/// <summary>
/// Get User details by JWT. Can be used to validate a JWT.
/// </summary>
/// <param name="jwt">A valid JWT. Must be a JWT that originates from a user.</param>
/// <returns></returns>
public async Task<User> GetUser(string jwt)
{
try
{
return await api.GetUser(jwt);
}
catch (RequestException ex)
{
throw ExceptionHandler.Parse(ex);
}
}

/// <summary>
/// Create a user (as a service_role)
Expand Down