Skip to content

Instantly share code, notes, and snippets.

@markvanwijnen
Created March 8, 2021 15:35
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/c6cbe049f722990febacbbefc0d22b9e to your computer and use it in GitHub Desktop.
Save markvanwijnen/c6cbe049f722990febacbbefc0d22b9e to your computer and use it in GitHub Desktop.
private func oAuthSigningKey(consumerSecret: String,
oAuthTokenSecret: String?) -> String {
if let oAuthTokenSecret = oAuthTokenSecret {
return consumerSecret.oAuthURLEncodedString + "&" +
oAuthTokenSecret.oAuthURLEncodedString
} else {
return consumerSecret.oAuthURLEncodedString + "&"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment