Derive Macro poem_openapi::SecurityScheme

source ·
#[derive(SecurityScheme)]
{
    // Attributes available to this derive:
    #[oai]
}
Expand description

Define a OpenAPI Security Scheme.

Macro parameters

AttributeDescriptionTypeOptional
renameRename the security scheme.stringY
typeThe type of the security scheme. (api_key, basic, bearer, oauth2, openid_connect)stringN
inapi_key The location of the API key. Valid values are “query”, “header” or “cookie”. (query, header, cookie)stringY
key_nameapi_key The name of the header, query or cookie parameter to be used..stringY
bearer_formatbearer A hint to the client to identify how the bearer token is formatted. Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes.stringY
flowsoauth2 An object containing configuration information for the flow types supported.OAuthFlowsY
openid_connect_urlOpenId Connect URL to discover OAuth2 configuration values.stringY
checkerSpecify a function to check the original authentication information and convert it to the return type of this function. This function must return Option<T>, and return None if check fails.stringY

OAuthFlows

AttributedescriptionTypeOptional
implicitConfiguration for the OAuth Implicit flowOAuthFlowY
passwordConfiguration for the OAuth Resource Owner Password flowOAuthFlowY
client_credentialsConfiguration for the OAuth Client Credentials flowOAuthFlowY
authorization_codeConfiguration for the OAuth Authorization Code flowOAuthFlowY

OAuthFlow

AttributedescriptionTypeOptional
authorization_urlimplicit authorization_code The authorization URL to be used for this flow.stringY
token_urlpassword client_credentials authorization_code The token URL to be used for this flow.stringY
refresh_urlThe URL to be used for obtaining refresh tokens.stringY
scopesThe available scopes for the OAuth2 security scheme.OAuthScopesY