所以我试图使用httpbasicauth访问这个网站,但它不起作用,这里是我使用的代码:
res = requests.head(url1, auth=HTTPBasicAuth(user, passw))
print (res)
print (res.headers.get('Location'))
我得到了这个输出
<Response [302]> #this means that you are redirected to another page
http://some.page.it.redirects.you.to.if.you.aren't.logged.in.com
我知道用户名和密码是正确的,但如果我在浏览器上登录,它就不会将我发送到页面。
该网站说它由http://openacs.org/提供支持,我不知道这是否重要。