我正在尝试摆脱在 python27 API 中使用 httplib 时遇到的异常 HTTPException('ApplicationError: 5 ',)(在 google appengine 上运行)-在与来自 AppEngine 的外部 api 进行通信时在这篇文章 ApplicationError2 和 ApplicationError5中进一步详细说明. 我想我也许可以尝试使用 httplib2。我可以看到调用 httplib 的 API 的唯一部分是:
def _get_conn(self):
return httplib.HTTPConnection(str(self.host), str(self.port), timeout=120)
httplib2 中是否有直接等效于httplib.HTTPConnection()的方法?我进行了搜索,但找不到任何东西。