Where are you getting
{u'error_number': u'0', u'firstname': u'Leo', u'varnish_id': u'1481723438.8521186.4e0191ae22e2f018d26a62b41b064 388.1ad0aa2e097b79b4e54b7951b7e73b1ccc7654cd840e55 cd4604c9263d8590cf', u'error_message': u'', u'entitlements': [u'app', u'crossword', u'archive', u'paywall', u'epaper'], u'session_token': u'4e0191ae22e2f018d26a62b41b064388', u'user_id': u'8515186'}
from? Cookies are set via Set-Cookie headers in normal HTTP. With javascript, the javascript code can set any data it likes with any amount of processing in between. So you need to match up whatever data you can find in the servers responses with the cookies you can see in the browser. The cookie names may or may not be realted to what you see in the server response, you have to match by guessing using the name and the value. Or just pretty print the javascript from the page and trace the executaion, that is sometimes easier, depending on how good you are at reading javascript.
|