http - Postman sees more cookies than python request -
when sending request postman can see following cookies. doing same thing python requests module don't cp cookie.
import requests requests.session() session: response = session.post('https://wikipedia.org') cookies = session.cookies.get_dict() print(cookies)
output:
{'wmf-last-access-global': '12-sep-2017', 'geoip': 'xxxxxx', 'wmf-last-access': '12-sep-2017'}
why so? there way cookie python?
Comments
Post a Comment