使用 Alamofire.request 重定向回应用
Redirect back to app with Alamofire.request
我正在 Swift 3 中开发一个 iOS 应用程序(我是一个完整的 Swift n00b。)我正在对外部应用程序进行身份验证,以获取访问令牌返回,但代码在针对外部应用程序进行身份验证后未重定向回我的应用程序。
AppDelegate.swift
func application(_ application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: Any) -> Bool {
print(url)
DispatchQueue.main.async {
print(url.scheme)
if (url.scheme == "myapp"){
print("i just caught a url and i feel fine and the url be says ", url)
}
}
return true
}
在 class 中处理来自外部应用程序的响应:
Alamofire.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default)
.responseJSON { response in
print(response)
if((response.result.value) != nil) {
let swiftyJsonVar = JSON(response.result.value!)
if let resData = swiftyJsonVar[key].string {
let autostart_data = swiftyJsonVar[key].string
... snip ...
let url = URL(string: "extapp:///?key=\(data!)&redirect=\(myapp)://key")
UIApplication.shared.open(url!, options: [:])
... snip ...
}
}
}
是否可以在收到响应后使用 Alamofire 重定向回我的应用程序?这两天我一直在网上研究 Google 并尝试了很多可能的解决方案,但到目前为止一无所获。如果有任何帮助,我将不胜感激!
问题不在于 Alamofire。这与外部应用程序的 API 和我的 iOS 应用程序无法重定向有关。
我正在 Swift 3 中开发一个 iOS 应用程序(我是一个完整的 Swift n00b。)我正在对外部应用程序进行身份验证,以获取访问令牌返回,但代码在针对外部应用程序进行身份验证后未重定向回我的应用程序。
AppDelegate.swift
func application(_ application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: Any) -> Bool {
print(url)
DispatchQueue.main.async {
print(url.scheme)
if (url.scheme == "myapp"){
print("i just caught a url and i feel fine and the url be says ", url)
}
}
return true
}
在 class 中处理来自外部应用程序的响应:
Alamofire.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default)
.responseJSON { response in
print(response)
if((response.result.value) != nil) {
let swiftyJsonVar = JSON(response.result.value!)
if let resData = swiftyJsonVar[key].string {
let autostart_data = swiftyJsonVar[key].string
... snip ...
let url = URL(string: "extapp:///?key=\(data!)&redirect=\(myapp)://key")
UIApplication.shared.open(url!, options: [:])
... snip ...
}
}
}
是否可以在收到响应后使用 Alamofire 重定向回我的应用程序?这两天我一直在网上研究 Google 并尝试了很多可能的解决方案,但到目前为止一无所获。如果有任何帮助,我将不胜感激!
问题不在于 Alamofire。这与外部应用程序的 API 和我的 iOS 应用程序无法重定向有关。