X-Forwarded-For
ヘッダーにパラメーターを追加する方法を知りたいです。
たとえば、アプリケーションで user-uagent を変更したい場合は、次のようにします。
class MyBrowser(QWebPage):
''' Settings for the browser.'''
def __init__(self):
QWebPage.__init__(self)
def userAgentForUrl(self, url):
''' Returns a User Agent that will be seen by the website. '''
return "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.15 (KHTML, like Gecko) Chrome/24.0.1295.0 Safari/537.15"
そして、私が次のようなことをするよりも:
class Browser(QWebView):
def __init__(self, user_info):
QWebView.__init__(self)
self.setPage(MyBrowser())