ServerAPIKeyCredential
public struct ServerAPIKeyCredential : StitchCredential
A credential which can be used to log in as a Stitch user using the Server API Key authentication provider.
-
Initializes this credential with the name of the provider, and a server API key.
Declaration
Swift
public init(withProviderName providerName: String = providerType.name, withKey key: String)
-
The name of the provider for this credential.
Declaration
Swift
public var providerName: String
-
The type of the provider for this credential.
Declaration
Swift
public static let providerType: StitchProviderType
-
The contents of this credential as they will be passed to the Stitch server.
Declaration
Swift
public var material: Document { get }
-
The behavior of this credential when logging in.
Declaration
Swift
public var providerCapabilities: ProviderCapabilities
-
The server API key contained within this credential.
Declaration
Swift
public let key: String