Struct fxa_client::AuthorizationParameters
source · pub struct AuthorizationParameters {
pub client_id: String,
pub scope: Vec<String>,
pub state: String,
pub access_type: String,
pub code_challenge: Option<String>,
pub code_challenge_method: Option<String>,
pub keys_jwk: Option<String>,
}
Expand description
Parameters provided in an incoming OAuth request.
This struct represents parameters obtained from an incoming OAuth request - that is, the values that an OAuth client would append to the authorization URL when initiating an OAuth sign-in flow.
Fields§
§client_id: String
§scope: Vec<String>
§state: String
§access_type: String
§code_challenge: Option<String>
§code_challenge_method: Option<String>
§keys_jwk: Option<String>