在webView QML中进行身份验证

时间:2013-01-11 15:27:03

标签: c++ qt webkit qml qtwebkit

我正在尝试使用webkit在qml中显示网页,除了我找不到访问包含登录名和密码的页面的语法

以下是一段代码:

 Rectangle {
   id: webBrowser
   property string urlString : "http://website.com/"
   //
 }

谢谢。

1 个答案:

答案 0 :(得分:1)

要对http请求进行身份验证,请将viewer.engine()->networkAccessManager() authenticationRequired信号连接到您的插槽,您可以在其中设置QAuthenticator名称和密码字段。