Looking for a swift way to generate OAuth 1 signature

半腔热情 提交于 2021-02-08 14:59:54

问题


I'm working on a small swift program to work with Yelp API over OAuth-1. I am looking to generate a HMAC-SHA1 signature.

I have the customer key, secret key , token and token secret.

From what I know, to make an API request with OAuth 1, we need the following attributes :

  1. oauth_consumer_key
  2. oauth_token
  3. oauth_signature_method = (HMAC-SHA1)
  4. oauth_signature
  5. oauth_timestamp
  6. oauth_nonce

How do I generate #4,5,6

I looked other this, but didn't help.

TIA!


回答1:


Quite late response but I maintain a very lightweight Swift 3 easy to use extension that adds OAuth 1.0a capabilities to URLRequest.

It's called OhhAuth. Can be easy installed with Cocoa Pods or the Swift package manager.

pod 'OhhAuth'

I will add an usage example on how to interact with the Twitter API:

let cc = (key: "<YOUR APP CONSUMER KEY>", secret: "<YOUR APP CONSUMER SECRET>")
let uc = (key: "<YOUR USER KEY>", secret: "<YOUR USER SECRET>")

var req = URLRequest(url: URL(string: "https://api.twitter.com/1.1/statuses/update.json")!)

let paras = ["status": "Hey Twitter! \u{1F6A7} Take a look at this sweet UUID: \(UUID())"]

req.oAuthSign(method: "POST", urlFormParameters: paras, consumerCredentials: cc, userCredentials: uc)

let task = URLSession(configuration: .ephemeral).dataTask(with: req) { (data, response, error) in

    if let error = error {
        print(error)
    }
    else if let data = data {
        print(String(data: data, encoding: .utf8) ?? "Does not look like a utf8 response :(")
    }
}
task.resume()

If you are only interested in the signature, you can use:

OhhAuth.calculateSignature(url: URL, method: String, parameter: [String: String],
consumerCredentials cc: Credentials, userCredentials uc: Credentials?) -> String



回答2:


You can use this library OAuthSwift, and if you are working with RxSwift + Moya this one will fit you perfectly RxSocialConnect-iOS



来源:https://stackoverflow.com/questions/38490515/looking-for-a-swift-way-to-generate-oauth-1-signature

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!