尝试使用 Python / gdata-2.0.13 将文件上传到 Google Docs 时出现 403 错误:
import gdata.docs.data
import gdata.docs.client
client = gdata.docs.client.DocsClient(source="MyUpdater")
client.ClientLogin("mymail@gmail.com", "mykey", client.source);
client.http_client_debug = True
ms = gdata.data.MediaSource(file_path="g:/Python/Utiles/test.doc", content_type="application/msword'")
entry = client.Upload(ms, "Test File")
# Error:
gdata.client.RequestError: Server responded with: 403, <errors xmlns='http://sch
emas.google.com/g/2005'><error><domain>GData</domain><code>ServiceForbiddenExcep
tion</code><internalReason>You do not have permission to perform this operation.
</internalReason></error></errors>
...
我尝试下载文件,没有问题。我使用的是普通的 Gmail 帐户(例如,没有 Google Apps 或付费帐户)。
有任何想法吗?TIA,巴勃罗