Documentation ¶
Overview ¶
Package securityprovider contains some default securityprovider implementations, which can be used as a RequestEditorFn of a client.
Index ¶
Constants ¶
const ( // ErrSecurityProviderApiKeyInvalidIn indicates a usage of an invalid In. // Should be cookie, header or query ErrSecurityProviderApiKeyInvalidIn = SecurityProviderError("invalid 'in' specified for apiKey") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SecurityProviderApiKey ¶
type SecurityProviderApiKey struct {
// contains filtered or unexported fields
}
SecurityProviderApiKey will attach an apiKey either to a cookie, header or query.
func NewSecurityProviderApiKey ¶
func NewSecurityProviderApiKey(in, name, apiKey string) (*SecurityProviderApiKey, error)
NewSecurityProviderApiKey will attach a generic apiKey for a given name either to a cookie, header or as a query parameter.
type SecurityProviderBasicAuth ¶
type SecurityProviderBasicAuth struct {
// contains filtered or unexported fields
}
SecurityProviderBasicAuth sends a base64-encoded combination of username, password along with a request.
func NewSecurityProviderBasicAuth ¶
func NewSecurityProviderBasicAuth(username, password string) (*SecurityProviderBasicAuth, error)
NewSecurityProviderBasicAuth provides a SecurityProvider, which can solve the BasicAuth challenge for api-calls.
type SecurityProviderBearerToken ¶
type SecurityProviderBearerToken struct {
// contains filtered or unexported fields
}
SecurityProviderBearerToken sends a token as part of an Authorization: Bearer header along with a request.
func NewSecurityProviderBearerToken ¶
func NewSecurityProviderBearerToken(token string) (*SecurityProviderBearerToken, error)
NewSecurityProviderBearerToken provides a SecurityProvider, which can solve the Bearer Auth challende for api-calls.
type SecurityProviderError ¶
type SecurityProviderError string
SecurityProviderError defines error values of a security provider.
func (SecurityProviderError) Error ¶
func (e SecurityProviderError) Error() string
Error implements the error interface.