当用户只拥有API令牌时如何使用urllib2?

时间:2012-04-08 10:26:58

标签: python urllib2

我将如何转换此curl命令:

curl -v -u 82xxxxxxxxxxxx63e6:api_token -X GET https://www.toggl.com/api/v6/time_entries.json

进入urlib2?

我找到了这个教程:http://www.voidspace.org.uk/python/articles/authentication.shtml

但他们使用密码和用户名。我只能使用API​​令牌。

谢谢。

另见这个问题:

Urllib2 raises 403 error while the same request in curl works fine

1 个答案:

答案 0 :(得分:1)

众所周知,urllib2在身份验证方面会占用大量时间。为了节省一些小猫生命,你应该使用http://docs.python-requests.org/en/latest/index.html