我想使用Purchases.subscriptions:get。在我的 Django 服务器中
我的 Google API 项目链接到我的 android 应用程序。
我使用了 Google API 的服务帐户(json),服务帐户的权限是项目的所有者和谷歌游戏控制台的管理员。
这是我的代码
from oauth2client.service_account import ServiceAccountCredentials
from httplib2 import Http
from googleapiclient.discovery import build
scopes = ['https://www.googleapis.com/auth/androidpublisher']
credentials = ServiceAccountCredentials.from_json_keyfile_name('service_account.json', scopes)
http_auth = credentials.authorize(Http())
androidpublisher = build('androidpublisher', 'v3', http=http_auth)
product = androidpublisher.purchases().products().get(productId="", packageName="", token="")
purchase = product.execute()
这是回应。
The current user has insufficient permissions to perform the requested operation
怎么了????