0

我将如何转换这个 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 引发 403 错误,而 curl 中的相同请求工作正常

4

1 回答 1

1

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

于 2012-04-08T11:21:10.147 回答