gpt4 book ai didi

qt - 如何忽略所有 SSL 错误?

转载 作者:太空宇宙 更新时间:2023-11-03 14:40:18 36 4
gpt4 key购买 nike

试图忽略:

The host name did not match any of the valid hosts for this certificate

QWebSocket::open() 之前使用此代码:

QObject::connect(&sock,
&QWebSocket::sslErrors,
&sock,
static_cast<void(QWebSocket::*)(const QList<QSslError>&)>(&QWebSocket::ignoreSslErrors),
Qt::DirectConnection);

但错误仍在发生。怎么了?

最佳答案

需要添加一个普通的回调,然后处理其中的错误:

    QObject::connect(&sock,
&QWebSocket::sslErrors,
this,
&MyClass::sslError,
Qt::DirectConnection);

...

void MyClass::sslError(const QList<QSslError>& errors)
{
// Here QWebSocket::ignoreSslErrors() can be called.
}

关于qt - 如何忽略所有 SSL 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43863220/

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