通过 Google API Python 客户端调用 Google 云端硬盘服务时,如何添加 HTTP headers?

How do I add HTTP headers when making calls to the Google Drive service via the Google API Python Client?

我正在构建一个应用程序,它通过云端硬盘 API 从 Google 云端硬盘获取文档。我想在我的请求中添加 'Accept Encoding' header。 Python 是如何做到的?我正在使用 google-api-python-client 我在这里使用代码:https://developers.google.com/drive/web/quickstart/quickstart-python 作为我的应用程序的基础,但它没有详细说明如何添加自定义 headers.

您不需要编辑接受编码,因为 python 客户端库 accepts and decodes gzip for you.