我试图做一个受保护的网页的请求,所以因此我试图从帮助验证QAuthenticator()
不过,我得到以下错误:
mgr.authenticationRequired(response, auth)
TypeError: native Qt signal is not callable
这是我的脚本的一部分:
def authenticate(self):
username = 'user'
password = 'pass'
url = 'http://someurl.com'
mgr = QNetworkAccessManager(self)
auth = QAuthenticator()
auth.setUser(username)
auth.setPassword(password)
response = QNetworkRequest()
response.setUrl(QUrl(url))
mgr.authenticationRequired(mgr.get(response), auth)
我在做什么错在这里?