python爬虫获取localStorage中的数据(获取token)
Posted SJL0327
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python爬虫获取localStorage中的数据(获取token)相关的知识,希望对你有一定的参考价值。
# 此为获取东航登录时的token(经分析js得出此token存储于localstorage中)
browser = webdriver.Chrome(executable_path=\'xxxx\')
browser.get(\'https://passport.ceair.com/?redirectUrl=http%3A%2F%2Fwww.ceair.com%2F#/ffp\')
token = browser.execute_script("return localStorage.getItem(\'apdid_data\')")
print(token)
以上是关于python爬虫获取localStorage中的数据(获取token)的主要内容,如果未能解决你的问题,请参考以下文章