mirror of https://github.com/scrapy/scrapy.git
Merge remote-tracking branch 'origin/cookiejar_to_spider' into cookiejar_to_spider
This commit is contained in:
commit
0c35c70670
|
|
@ -307,7 +307,7 @@ Does Scrapy manage cookies automatically?
|
|||
Yes, Scrapy receives and keeps track of cookies sent by servers, and sends them
|
||||
back on subsequent requests, like any regular web browser does.
|
||||
|
||||
For more info see :ref:`topics-request-response` , :ref:`cookies-mw` and :ref:`cookiejars`.
|
||||
For more info see :ref:`topics-request-response`, :ref:`cookies-mw` and :ref:`cookiejars`.
|
||||
|
||||
How can I see the cookies being sent and received from Scrapy?
|
||||
--------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -297,7 +297,9 @@ Here's an example of a log with :setting:`COOKIES_DEBUG` enabled::
|
|||
|
||||
Direct access to cookiejars from spider
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
On some cases it is required to directly set specific values to existing cookiejar
|
||||
|
||||
In some cases it is required to directly set specific values in an existing
|
||||
cookiejar.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue