http - Postman sees more cookies than python request -


when sending request postman can see following cookies. enter image description here 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

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -