Google 云端硬盘服务帐户出现未经授权的客户端异常

Unauthorized Client Exception with Google Drive Service Account

我正在尝试通过 python 使用服务帐户身份验证来设置 Google Drive 应用程序。我已经尝试了我能找到的所有说明,但我无法获得它来授权客户。这是我得到的:

CLIENT_EMAIL='<stuff>@developer.gserviceaccount.com'
f = open('<the .p12 file I downloaded from the OAuth section of the credentials page on the developers console>', 'rb')
key = f.read()
credentials = SignedJwtAssertionCredentials(CLIENT_EMAIL, key, scope='https://www.googleapis.com/auth/drive', sub="<the email address of the account owner listed in the permissions page>")
self.http = credentials.authorize(httplib2.Http())

gauth = GoogleAuth()
gauth.credentials = credentials

self.drive = GoogleDrive(gauth)

稍后在代码中,这一行

file_list = self.drive.ListFile({'q': "title = '" + id + '.zip' + "'", 'maxResults': 100}).GetList()

我的代码抛出 unauthorized client exception。我还尝试将我直接下载的 JSon 中的私钥粘贴到代码中,但这也不起作用。将密钥解码或编码为 base64 不起作用(给我一些格式错误)。有人知道哪里出了问题吗?

我也在一台服务器上 运行 这不是我下载 p12 文件的地方,但我认为这无关紧要。我只是提一下,以防万一。

我在使用 google drive sdk 时也遇到了很多问题。我写了一个小包装器,使 Google Drive Api 易于使用(至少对我来说是这样)。您可能会发现它有帮助 - google drive client wrapper gist