QT http 设置用户代理
void MainWindow::on_WowButton_clicked()
{
http->setHost("pastebin.ca");
http->get("/raw/2072840");
QString paste(http->readAll());
ui->textEdit->setText(paste);
}
现在,我想为获取请求设置用户代理。请告诉设置用户代理的正确方法。
谢谢 !
void MainWindow::on_WowButton_clicked()
{
http->setHost("pastebin.ca");
http->get("/raw/2072840");
QString paste(http->readAll());
ui->textEdit->setText(paste);
}
Now, I want to set user agent for the get request. please tell the proper way to set a user agent .
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QHttp 已过时且已不再使用。您需要使用 QNetworkAccessManager 来代替。
如果你还想使用QHttp
QHttp is obsolete and depricated. You are required to use QNetworkAccessManager instead.
If you still want to use QHttp