gpt4 book ai didi

ios - OAuthSwift (1) 连接

转载 作者:行者123 更新时间:2023-11-30 12:44:53 24 4
gpt4 key购买 nike

我正在尝试创建一个客户端(在私有(private) Pod 中)来连接到 Garmin API (OAuth1),但在执行此操作时遇到一些问题。我正在使用 OAuthSwift 和 OAuthSwiftAlamofire

首先我试图获得所有授权,

let oauthswift = OAuth1Swift(
consumerKey: "*****************",
consumerSecret: "****************",
requestTokenUrl: "http://connectapitest.garmin.com/oauth-service-1.0/oauth/request_token",
authorizeUrl: "http://connecttest.garmin.com/oauthConfirm",
accessTokenUrl: "http://connectapitest.garmin.com/oauth-service-1.0/oauth/access_token"
)

oauthswift.authorizeURLHandler = SafariURLHandler(viewController: self, oauthSwift: oauthswift)

let _ = oauthswift.authorize(
withCallbackURL: URL(string: "https://www.****.co/api/v2/garminCallback")!,
success: { credential, response, parameters in
print("Success")
print(credential.oauthToken)
print(credential.oauthTokenSecret)
print(credential.oauthVerifier)
},
failure: { error in
print("Error")
print(error.localizedDescription)
})

AppDelegate:

 func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
if (url.host == "oauth-callback") {
OAuthSwift.handle(url: url)
}
return true
}

所以,这部分代码在 safari 中打开 garmin 的连接页面,我使用我的帐户 mail/pwd 进行连接,仅此而已。回调永远不会成功,或者永远不会失败。所以我无法访问我的凭据。就像authorize(withCallBackURL...) 不要等待callBack,永远不会获取URL 中的信息(如oauth-identifier)。

我不明白为什么,如果你有想法,谢谢。

最佳答案

我正在分享对我有用的代码

    // create an instance of oAuth and retain it
let oauthSwift = OAuth1Swift(
consumerKey: "*******",
consumerSecret: "*******",
requestTokenUrl: "https://connectapi.garmin.com/oauth-service/oauth/request_token",
authorizeUrl: "https://connect.garmin.com/oauthConfirm",
accessTokenUrl: "https://connectapi.garmin.com/oauth-service/oauth/access_token"
)

// add safari as authorized URL Handler
oauthSwift.authorizeURLHandler = SafariURLHandler(viewController: self, oauthSwift: oauthSwift)

// set redirection URL
guard let redirectURL = URL(string: "oauth-swift://garmin-callback") else { return }

// add callback url to authorized url
oauthSwift.addCallbackURLToAuthorizeURL = true
      // authorized the request
    oauthSwift.authorize(withCallbackURL: redirectURL, success: { (credentials, response, parameters) in
print(response)
}, failure: { (error) in
print(error)
})

//授权调用已改为下面

        oauthSwift.addCallbackURLToAuthorizeURL = true
oauthSwift.authorize(withCallbackURL: redirectURL) { result in
switch result {
case .success(let (req, response, res)):
print("response=", response ?? "no")
print("req=", req ?? "no")
print("res=", res ?? "no")
print("dataString=",response?.dataString())
if let secrect = res["oauth_token_secret"] as? String{
self.garminAccessTokenSecret = secrect
}
if let token = res["oauth_token"] as? String{
self.garminAccessToken = token
}
case .failure(let error):
print(error.description)
}
}

关于ios - OAuthSwift (1) 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41768212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com