【发布时间】:2016-10-21 13:14:54
【问题描述】:
我想打开一个网站,在 WKWebView 中使用密码/用户名(基本)授权。
为此,我使用方法didReceiveAuthenticationChallenge。
import UIKit
import WebKit
class ViewController: UIViewController {
@IBOutlet weak var container: UIView!
var webView: WKWebView!
override func viewDidLoad() {
super.viewDidLoad()
webView = WKWebView()
container.addSubview(webView)
let urlStr = "https://vplan.bielefeld-marienschule.logoip.de/subst_002.htm"
let url = NSURL(string: urlStr)!
let request = NSURLRequest(url: url as URL)
webView.load(request as URLRequest)
}
func webView(webView: WKWebView, didReceiveAuthenticationChallenge challenge: URLAuthenticationChallenge, completionHandler: (URLSession.AuthChallengeDisposition, URLCredential?) -> Void){
if challenge.protectionSpace.host == "https://vplan.bielefeld-marienschule.logoip.de/subst_002.htm" {
let userStr = "********"
let passwordStr = "********"
let credential = URLCredential(user: userStr, password: passwordStr, persistence: URLCredential.Persistence.forSession)
challenge.sender?.use(credential, for: challenge)
completionHandler(.useCredential, credential)
}
}
override func viewDidAppear(_ animated: Bool) {
let frame = CGRect(x: 0, y: 0, width: container.bounds.width, height: container.bounds.height)
webView.frame = frame
但由于某种原因,它不起作用。
添加代码行
completionHandler(URLSession.AuthChallengeDisposition.UseCredential, credential)
就像这里的描述:Authentication with WKWebView in Swift 产生了一个错误。
我还尝试将challenge.protectionSpace.host 更改为vplan.bielefeld-marienschule.logoip.de:443,在Safari pop-up 中显示为登录地址,并更改为服务器的IP 地址(93.206.31.253)。
希望你能帮助我。 谢谢!
【问题讨论】: