OAuthCredentials
public struct OAuthCredentials
Represents the OAuth credentials used to authenticate an application with the Wing API.
-
The client id.
Declaration
Swift
public var id: String -
The client secret.
Declaration
Swift
public var secret: String -
Initializes a
OAuthCredentialsstructure.Declaration
Swift
public init(id: String, secret: String)Parameters
idThe client id of your application.
secretThe client secret of your application.
View on GitHub
OAuthCredentials Structure Reference