如何使用 QT WebEngine 发送 HTTPHeader?

Posted

技术标签:

【中文标题】如何使用 QT WebEngine 发送 HTTPHeader?【英文标题】:How to send HTTPHeader using QT WebEngine? 【发布时间】:2016-07-31 13:37:27 【问题描述】:

我正在使用 QT WebEngine 来制作一个适合我工作时需要的桌面网络浏览器。不幸的是,我需要将一些带有 HTTP 标头的数据发送到站点。我遇到了QWebEngineUrlRequestInfo class'void QWebEngineUrlRequestInfo::setHttpHeader(const QByteArray &name, const QByteArray &value) 方法,但我真的不知道如何在代码中使用它。到目前为止,这是我的代码:

import QtQuick 2.7
import QtQuick.Window 2.2
import QtQuick.Controls 2.0
import QtWebEngine 1.3

ApplicationWindow 
    visible: true
    width: 320
    height: 240
    title: qsTr("Browser")
    flags: Qt.WindowStaysOnTopHint

    WebEngineView 
        anchors.fill: parent
        url: "some http url here"
        Rectangle
            height: 100
            width: height
        
    

这是我的 main.cpp 文件:

#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QtWebEngine/qtwebengineglobal.h>
#include <QWebEngineUrlRequestInfo>
#include <QByteArray>

int main(int argc, char *argv[])

    QByteArray key, value;
    key.append("SomeKey");
    value.append("SomeValue");
    QWebEngineUrlRequestInfo url;//Won't work because its constructor is private
    url.setHttpHeader(key, value);
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine;
    QtWebEngine::initialize();
    engine.load(QUrl(QLatin1String("qrc:/main.qml")));

    return app.exec();

由于上面的代码抛出了一个错误,我实在想不出解决这个问题的办法。 TIA

【问题讨论】:

【参考方案1】:

这是我的小project,使用网络引擎,仅供参考。

view->page()->profile()->setRequestInterceptor(/*instance inerit QWebEngineUrlRequestInterceptor*/)
...
void /*class inerit WebEngineUrlRequestInterceptor*/::interceptRequest(QWebEngineUrlRequestInfo &info)

    info.setHttpHeader("Accept-Language", "zh-CN,zh;q=0.8");

【讨论】:

以上是关于如何使用 QT WebEngine 发送 HTTPHeader?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Qt webEngine 而不是 Qt webkit

如何单击 Qt WebEngine 中的按钮?

Qt5 和 QML:如何使用 WebEngine Quick Nano Browser 自动输入用户名和密码

Qt WebEngine 失败

Qt5.9.0正式版动态编译 (VS2017) 支持WebEngine ICU OpenSSL

PyQt WebEngine 设置 http 标头