从 Siesta 响应中获取 HTTPURLResponse



我正在与执行304重定向的REST API作斗争;我需要的是获取重定向的目标URL并用浏览器打开它(我知道,这有点(。我成功拦截了重定向,多亏了这个漂亮的小伙子反向熊猫: https://github.com/bustoutsolutions/siesta/issues/210 但我仍然没有弄清楚如何在 GET 请求的回调中获取重定向 url(成功或失败(

resource.load().onSuccess{ response in
//HERE I WOULD LIKE TO TAKE THE URL OF THE REDIRECT 
//(if I print the response I can see the HTML of the destination web page where the user should land)
}.onFailure{ error in
//using 'completionHandler(nil)' in the 'willPerformHTTPRedirection' method of the delegate, brings me here
}

关于如何解决此问题的任何建议?

谢谢!

看看 RequestChain.swift 内部,它有一些带有示例的评论,可以提供帮助。我相信你可以做这样的事情:

func redirectRequest() -> Request {
return self.yourAnotherRequest(onSuccess: {
}, onFailure: { error in
})
}
func yourRequest(request: Siesta.Request) -> Request {
return request.chained {
guard case .failure(let error) = $0.response,
error.httpStatusCode == 401 else {
return .useThisResponse
}
return .passTo(
self.redirectRequest().chained {
if case .failure = $0.response {
return .useThisResponse
} else {
return .passTo(request.repeated())
}
}
)
}
}

您可以在午睡源中使用关键字chaineduseThisResponsepassTo搜索更多示例。

请告诉我们它是否有助于解决您的问题,很高兴看到您的最终解决方案。

相关内容

  • 没有找到相关文章

最新更新