Python使用Web浏览器,urllib和CookieJar进行身份验证并启动私有页面



我想使用 cookiejar 登录,启动的不是登录页面,而是只有在身份验证后才能看到的页面。我知道机械化是这样做的,但除了现在不为我工作之外,我宁愿在没有它的情况下这样做。现在我有,

import urllib, urllib2, cookielib, webbrowser
from cookielib import CookieJar
username = 'my_username'
password = 'my_password'
url = 'my_login_page'
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
login_data = urllib.urlencode({'my_username' : username, 'my_password' : password})
opener.open(url, login_data)
page_to_launch = 'my_authenticated_url'
webbrowser.open(page_to_launch, new=1, autoraise=1)

我要么能够登录并将经过身份验证的页面转储到 stdout,要么在不识别 cookie 的情况下启动登录页面,但我无法在登录后启动我想要的页面。感谢帮助。

您可以使用硒模块来执行此操作。它启动一个浏览器(chrome,Firefox,IE等),其中加载了一个扩展名,允许您控制浏览器。

以下是您将 cookie 加载到其中的方法:

from selenium import webdriver
driver = webdriver.Firefox() # open the browser
# Go to the correct domain
driver.get("http://www.example.com")
# Now set the cookie. Here's one for the entire domain
# the cookie name here is 'key' and it's value is 'value'
driver.add_cookie({'name':'key', 'value':'value', 'path':'/'})
# additional keys that can be passed in are:
# 'domain' -> String,
# 'secure' -> Boolean,
# 'expiry' -> Milliseconds since the Epoch it should expire.
# finally we visit the hidden page
driver.get('http://www.example.com/secret_page.html')

您的 cookie 无法进入浏览器。

webbrowser没有用于接受存储在CookieJar实例中的 cookie 的功能。 它只是一个通用接口,用于启动带有 URL 的浏览器。 您要么必须实现一个可以在浏览器中存储cookie的CookieJar(这几乎肯定不是一件小事),要么使用替代库来为您解决此问题。

相关内容

  • 没有找到相关文章

最新更新