OAuth2EndpointAuthMethod

public enum OAuth2EndpointAuthMethod: String

The auth method supported by the endpoint.

  • No auth method is to be used. Good luck with that.

    Declaration

    Swift

    case none = "none"
  • The client_secret_post method should be used.

    Declaration

    Swift

    case clientSecretPost = "client_secret_post"
  • The client_secret_basic method should be used.

    Declaration

    Swift

    case clientSecretBasic = "client_secret_basic"