urllib2.HTTPError: HTTP Error 403: Forbidden 解決方案

來源:互聯網
上載者:User

標籤:open   flat   code   sel   準備   for   firefox   error:   agent   

參考:

  • https://stackoverflow.com/questions/13303449/urllib2-httperror-http-error-403-forbidden
  • https://segmentfault.com/q/1010000000470724

通過測試應該是request中header的問題。

 1 class S0819MtimeTiantangPipeline(object): 2     def process_item(self, item, spider): 3         headers = { 4                     "User-Agent": ‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:53.0) Gecko/20100101 Firefox/53.0‘, 5                     "Accept": ‘text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8‘, 6                     "Accept-Language": ‘zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3‘, 7                     "Accept-Encoding": ‘gzip, deflate‘, 8                     "Upgrade-Insecure-Requests": 1, 9                     ‘Connection‘: ‘keep-alive‘,10                 }11         12         13         req = urllib2.Request(url=item[‘addr‘], headers=headers)14         res = urllib2.urlopen(req)

下面是我怎麼得到正確的header的方法:

1. 準備:

Firefox瀏覽器+HttpFox外掛程式

2. 步驟

1. 開啟HttpFox,然後將一個你要request的url輸入到Firefox瀏覽框裡,斷行符號

例: http://img31.mtime.cn/pi/2013/01/15/163845.87188937_1000X1000.jpg

2. 如選取所需要的header

 

urllib2.HTTPError: HTTP Error 403: Forbidden 解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.