AlamofireImage addAuthentication 不添加授权标头
Posted
技术标签:
【中文标题】AlamofireImage addAuthentication 不添加授权标头【英文标题】:AlamofireImage addAuthentication not adding Authorization header 【发布时间】:2017-07-19 22:13:36 【问题描述】:我正在使用 UIImageView.af_setImage 扩展从需要身份验证的 webdav 服务器下载图像。
根据文档说...
如果图像需要来自 UIImageView 扩展的身份验证凭据,则可以按如下方式提供:
ImageDownloader.default.addAuthentication(user: "user", password: "password")
...我尝试了 2 种不同的方式添加身份验证:
ImageDownloader.default.addAuthentication(user: "user", password: "password")
当它不起作用时
UIImageView.af_sharedImageDownloader.addAuthentication(user: "user", password: "password")
但是,似乎都没有将 Authorization 标头发送到 HTTP 请求。
我错过了什么?
【问题讨论】:
【参考方案1】:我没有使用addAuthentication()
,而是通过安装自己的UIImageView.af_sharedImageDownloader
解决了这个问题,它添加了Authorization: Bearer yZyq6jYn78Ia9EOysUV8kQ
标头。
斯威夫特
import Alamofire
import OAuthSwiftAlamofire
import OAuthSwift
import AlamofireImage
class MyNetwork
lazy var sessionManagerForImageDownloader: SessionManager =
let configuration: URLSessionConfiguration = ImageDownloader.defaultURLSessionConfiguration()
let sessionManager = Alamofire.SessionManager(configuration: configuration)
sessionManager.adapter = self.oauth2Swift.requestAdapter
sessionManager.retrier = self.oauth2Swift.requestAdapter
sessionManager.startRequestsImmediately = false
return sessionManager
()
func setup()
// Glue AlamofireImage with OAuthSwift
// When `af_setImage()` is invoked, then the it will inserts
// the header field "Authorization: Bearer yZyq6jYn78Ia9EOysUV8kQ"
UIImageView.af_sharedImageDownloader = ImageDownloader(sessionManager: sessionManagerForImageDownloader)
lazy var oauth2Swift: OAuth2Swift =
return OAuth2Swift(
consumerKey: "clientID",
consumerSecret: "clientSecret",
authorizeUrl: "https://example.com/login",
accessTokenUrl: "https://example.com/login",
responseType: "code"
)
()
【讨论】:
以上是关于AlamofireImage addAuthentication 不添加授权标头的主要内容,如果未能解决你的问题,请参考以下文章
AlamofireImage:如何使用 POST 请求下载图像
iOS图片[翠鸟|| AlamofireImage]“由于内存问题而终止”