UserInfoRequest Class
Abblix.Oidc.Server
Abblix.Oidc.Server.Model
UserInfoRequest Class
Parameters of a request to the OIDC userinfo_endpoint (OIDC Core §5.3). The access token
is normally presented in the HTTP Authorization header per RFC 6750 §2.1, but RFC 6750 §2.2
also permits the form-encoded access_token body parameter modeled here.
public record UserInfoRequest : System.IEquatable<Abblix.Oidc.Server.Model.UserInfoRequest>
Inheritance System.Object → UserInfoRequest
Implements System.IEquatable<UserInfoRequest>
Properties
UserInfoRequest.AccessToken Property
The access token that authorizes the request to retrieve user information. This token is typically obtained during the authentication process and is used to access protected user data.
public string? AccessToken { get; set; }