Skip to content

Instantly share code, notes, and snippets.

@markvanwijnen
Created March 8, 2021 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markvanwijnen/c65afe6fb440a17ee5070a5f18ee3385 to your computer and use it in GitHub Desktop.
Save markvanwijnen/c65afe6fb440a17ee5070a5f18ee3385 to your computer and use it in GitHub Desktop.
TwitterAPI - ClientCredentials
class TwitterAPI: NSObject, ObservableObject {
struct ClientCredentials {
static let APIKey = "YOUR_API_KEY"
static let APIKeySecret = "YOUR_API_KEY_SECRET"
static let CallbackURLScheme = "YOUR_CALLBACK_URL_SCHEME"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment