gpt4 book ai didi

python-3.x - 如何在 RequestInterceptor 中正确设置 QWebEngine HTTP header

转载 作者:可可西里 更新时间:2023-11-01 15:28:02 34 4
gpt4 key购买 nike

我一直在 Python3 上遇到 PyQt5 的 QWebEngineUrlRequestInterceptor 问题,更重要的是,setHttpHeader 函数。这是我的代码:

class WebEngineUrlRequestInterceptor(QWebEngineUrlRequestInterceptor):
def __init__(self, parent=None):
super().__init__(parent)

def interceptRequest(self, info):
info.setHttpHeader("X-Frame-Options", "ALLOWALL")
print(info.requestUrl())

不幸的是,似乎完全找不到使用此功能的正确方法,因此我不得不求助于尝试我能想到的所有可能的方法,但无济于事。

我也试过用 QByteArray 围绕 setHttpHeader 的参数,这导致 QByteArray 给我这个提示......

    Traceback (most recent call last):
File "test.py", line 30, in interceptRequest
info.setHttpHeader(QByteArray("X-Frame-Options"), QByteArray("ALLOWALL"))
TypeError: arguments did not match any overloaded call:
QByteArray(): too many arguments
QByteArray(int, str): argument 1 has unexpected type 'str'
QByteArray(Union[QByteArray, bytes, bytearray]): argument 1 has unexpected type 'str'

我还尝试使用 .encode('ascii') 甚至 .encode('utf-8') 对字符串进行编码。虽然两者都没有引发错误,但 header 也拒绝更改,这让我相信返回的值与函数不兼容。

更新:即使 QByteArray(b"X-Frame-Options") 也没有设置标题。 js:拒绝在框架中显示“https://www.google.co.uk/?gfe_rd=cr&dcr=0&ei=rX2gWtDJL8aN8Qfv3am4Bw”,因为它将“X-Frame-Options”设置为“SAMEORIGIN”。 是我从 WebEngine 得到的错误。

要添加的注释,我 100% 确定正在调用 interceptRequest。我可以在终端中看到 print 调用的输出。

[更新链接] 中的完整 MCVE 代码:https://paste.ee/p/Y0mRs

最佳答案

那么首先,问题是为什么现有代码不起作用?

class WebEngineUrlRequestInterceptor(QWebEngineUrlRequestInterceptor):
def __init__(self, parent=None):
super().__init__(parent)

def interceptRequest(self, info):
info.setHttpHeader("X-Frame-Options", "ALLOWALL")
print(info.requestUrl())

现在,当您安装 UrlRequestInterceptor 时,它绝对是一个请求拦截器。 WebEngineView发起的请求就是通过这个传递的,你可以用它做很多事情

  • 一起更改 URL
  • 阻止下载(广告拦截等...)
  • 向请求添加更多 header
  • 重定向到不同的 url

现在当您有 info.setHttpHeader("X-Frame-Options", "ALLOWALL") 时,它会将其添加到请求中而不是响应中。这可以通过将 url 更改为 http://postman-echo.com/get 来验证,您将得到以下响应

{
"args": {

},
"headers": {
"host": "postman-echo.com",
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"accept-encoding": "gzip, deflate",
"cookie": "sails.sid=s%3AXNukTzCE5ucYNEv_NB8ULCf4esVES3cW.%2BmpA77H2%2F%2B6YcnypvZ7I8RQFvVJrdOFs8GD%2FPymF0Eo",
"if-none-match": "W/\"1e1-rYSDjZun8qsI1ZojoxMuVg\"",
"upgrade-insecure-requests": "1",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.10.1 Chrome/61.0.3163.140 Safari/537.36",
"x-frame-options": "ALLOW",
"x-forwarded-port": "80",
"x-forwarded-proto": "http"
},
"url": "http://postman-echo.com/get"
}

但是响应端没有任何改变,您仍然拥有原始请求实际返回的内容。

使用 QWebView 可以安装 QNetworkAccessManager 并返回带有修改后响应的 QNetworkReply。中显示的内容

How to write content to QNetworkReply (was: QWebview with generated content)

但是如果你阅读 Porting from Qt WebKit to Qt WebEngine指南,有一个重要的区别需要注意

Qt WebEngine Does Not Interact with QNetworkAccessManager

Some classes of Qt Network such as QAuthenticator were reused for their interface but, unlike Qt WebKit, Qt WebEngine has its own HTTP implementation and cannot go through a QNetworkAccessManager.

The signals and methods of QNetworkAccessManager that are still supported were moved to the QWebEnginePage class.

我挖了很多线程要求响应修改方法。不幸的是所有未回答

Capture server response with QWebEngineView

QWebEngineView modify web content before render

https://forum.qt.io/topic/81450/capture-client-request-headers-with-qwebengineview

Intercept AJAX POST request and read data using QWebEngine?

所以这并不容易。但是我认为有一种解决方法可行,但我还无法验证它

方法是添加一个新的scheme url handler

self.conn_handler = AppSchemeHandler()
self.profile.installUrlSchemeHandler("conapp".encode(), self.conn_handler)
self.webpage = MyQWebEnginePage(self.profile, self.view)

现在我们更新拦截器,以便它修改 google url 以将请求重定向到我们的处理程序

class WebEngineUrlRequestInterceptor(QWebEngineUrlRequestInterceptor):
def __init__(self, parent=None):
super().__init__(parent)

def interceptRequest(self, info):
info.setHttpHeader(b'x-frame-options', b'ALLOW')
print(info.requestUrl())

if str(info.requestUrl().host()) == "google.com":
url = info.requestUrl().toString()
item = url.split("/")[-1]

info.redirect(QUrl(r"conapp://webresource?url=" + url))

然后在我们的方案处理程序中

class AppSchemeHandler(QWebEngineUrlSchemeHandler):
def __init__(self, parent=None):
super().__init__(parent)

def requestStarted(self, request):
url = request.requestUrl().toString().replace("conapp://webresource?url=", "")
response = QWebEngineHttpRequest(QUrl(url))

# Do something here which returns the response back to the url

我们读取响应并将其发回的部分是我尚未在任何地方找到示例的部分

关于python-3.x - 如何在 RequestInterceptor 中正确设置 QWebEngine HTTP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49163112/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com