简体   繁体   中英

Python - The request headers for mechanize

I am looking for a way to view the request (not response) headers, specifically what browser mechanize claims to be. Also how would I go about manipulating them, eg setting another browser?

Example:

import mechanize
browser = mechanize.Browser()
# Now I want to make a request to eg example.com with custom headers using browser

The purpose is of course to test a website and see whether or not it shows different pages depending on the reported browser.

It has to be the mechanize browser as the rest of the code depends on it (but is left out as it's irrelevant.)

browser.addheaders = [('User-Agent', 'Mozilla/5.0 blahblah')]

You've got an answer on how to change the headers, but if you want to see the exact headers that are being used try using a proxy that displays the traffic. eg Fiddler2 on windows or see this question for some Linux altenatives .

你也可以修改referer ...

br.addheaders = [('Referer', 'http://google.com')]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM