我将如何转换这个 curl 命令:
curl -v -u 82xxxxxxxxxxxx63e6:api_token -X GET https://www.toggl.com/api/v6/time_entries.json
进入urllib2?
我找到了这个教程:http ://www.voidspace.org.uk/python/articles/authentication.shtml
但他们使用密码和用户名。我只能使用 API 令牌。
谢谢你。
另见这个问题:
我将如何转换这个 curl 命令:
curl -v -u 82xxxxxxxxxxxx63e6:api_token -X GET https://www.toggl.com/api/v6/time_entries.json
进入urllib2?
我找到了这个教程:http ://www.voidspace.org.uk/python/articles/authentication.shtml
但他们使用密码和用户名。我只能使用 API 令牌。
谢谢你。
另见这个问题:
众所周知,urllib2 在身份验证方面会耗费大量时间。为了挽救一些小猫的生命,您应该使用http://docs.python-requests.org/en/latest/index.html