在Python中使用基本身份验证进行HTTP POST的最简洁方法是什么?

问题描述 投票:26回答:3

使用Python中的Basic Auth进行HTTP POST最简洁的方法是什么?

仅使用Python核心库。

python http basic-authentication
3个回答
63
投票

说真的,只需使用requests

import requests
resp = requests.post(url, data={}, auth=('user', 'pass'))

这是一个纯粹的python库,安装就像easy_install requestspip install requests一样简单。它有一个非常简单易用的API,它修复了urllib2中的错误,所以你不必这样做。不要因为愚蠢的自我要求而使你的生活更加艰难。


8
投票

Hackish工作方式:

urllib.urlopen("https://username:password@hostname/path", data) 

很多人没有意识到在URL中指定用户名和密码的旧语法在urllib.urlopen中有效。用户名或密码似乎不需要任何编码,除非密码包含“@”符号。


5
投票

如果您定义了网址,用户名,密码和一些后期数据,这应该适用于Python2 ...

import urllib2

passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None, url, username, password)
auth_handler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(auth_handler)
urllib2.install_opener(opener)
content = urllib2.urlopen(url, post_data)

官方Python文档中的示例,显示了urllib2中的Basic Auth:* http://docs.python.org/release/2.6/howto/urllib2.html

使用urllib2进行基本身份验证的完整教程:* http://www.voidspace.org.uk/python/articles/authentication.shtml

© www.soinside.com 2019 - 2024. All rights reserved.