Hi I'm working with pyqt4 and what I want to do is to craft an arbitrary POST request by using the QtWebKit request of my QWebPage/QWebView. By looking extensively around my understanding is that I have to subclass networkaccessmanager by overriding the createRequest()
method.
I saw an example that allowed to use the fourth parameter of createRequest to extract the data of a POST request (see code below) being sent, but my question is how can I set that same data variable of createRequest to send a custom POST data, like "query=myvalue"?
Apparently data is a QIODevice
variable: I tried a lot of different ways to set it, but can't get it to work and always end up with python complaining it's an unexpected value. Am I missing something here? Anybody care to share a working code sample?
import sys
from PySide.QtCore import *
from PySide.QtGui import QApplication
from PySide.QtWebKit import QWebView, QWebPage
from PySide.QtNetwork import QNetworkAccessManager
html = ''' <html> <body>
<form action="http://www.google.com" method="post"><input type="text" name="test" /><input type="submit" value="submit"/></form>
</body> </html> '''
class Browser(object):
def __init__(self):
self.network_manager = QNetworkAccessManager()
self.network_manager.createRequest = self._create_request
self.web_page = QWebPage()
self.web_page.setNetworkAccessManager(self.network_manager)
self.web_view = QWebView()
self.web_view.setPage(self.web_page)
self.html_data = None
def _create_request(self, operation, request, data):
# data contains all the post data that is being added to the request
# so you can look into it here
print data.readAll()
reply = QNetworkAccessManager.createRequest(self.network_manager,
operation,
request,
data)
return reply
if __name__ == '__main__':
app = QApplication(sys.argv)
browser = Browser()
frame = browser.web_page.mainFrame()
browser.web_view.setHtml(html)
browser.web_view.show()
app.exec_()
The code you posted is from one of my answers, so I feel obligated to answer this question too :)