scrapy发送post请求获取cookie

Posted qiaoer1993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrapy发送post请求获取cookie相关的知识,希望对你有一定的参考价值。

from scrapy.http import Request,FormRequest

  def start_requests(self): return [Request(‘http://www.com/login.htm‘, meta=‘cookiejar‘: 1, callback=self.parse)] def parse(self, response): url = ‘http://www.com/login.htm‘ data = #这里放data数据 yield FormRequest.from_response(response, url=url, # 真实post地址 meta=‘cookiejar‘: response.meta[‘cookiejar‘], formdata=data, callback=self.next ) def next(self,response): cookie = response.request.headers.getlist(‘Cookie‘)[0].decode() self.cookie = dict([l.split("=", 1) for l in cookie.split("; ")]) url = "http://www.com/index.htm" yield scrapy.Request(url=url,cookies=self.cookie,callback=self.get_parse,dont_filter=True)

  

以上是关于scrapy发送post请求获取cookie的主要内容,如果未能解决你的问题,请参考以下文章

scrapy发送post请求

Scrapy 框架 手动发送请求 POST 请求的发送

python中scrapy怎么发送一个post请求

如何在scrapy中发送带有标头和有效负载的Post请求

scrapy基础知识之发送POST请求:

python爬虫scrapy入门8:发送POST请求