1
我正在使用UIImageView.af_setImage擴展從需要認證的webdav服務器下載圖像。AlamofireImage addAuthentication not added授權標頭
在此基礎上說的文檔......
如果圖像需要從UIImageView的擴展認證證書,它可以提供如下:
ImageDownloader.default.addAuthentication(user: "user", password: "password")
...我曾嘗試添加身份驗證2種不同的方式:
ImageDownloader.default.addAuthentication(user: "user", password: "password")
and when沒有工作
UIImageView.af_sharedImageDownloader.addAuthentication(user: "user", password: "password")
但是,似乎都沒有發送授權頭到HTTP請求。
我錯過了什麼?