2

当我向某个站点发出 GET 请求时,我想禁止 httplib2 跟随重定向。这可能吗?

4

1 回答 1

4

Http在您的对象上禁用重定向:

import httplib2

http = httplib2.Http()
http.follow_redirects = False
于 2013-12-05T21:33:13.523 回答