如何获取 Google Apps 市场通知



我创建了一个新的市场应用并将其安装在我的域中。我正在尝试使用 appsmarket api 获取安装我的应用程序的域列表,代码如下:

credentials = SignedJwtAssertionCredentials(CLIENT_ID, PRIVATE_KEY, SCOPE)  
http = httplib2.Http()
http = credentials.authorize(http)
service = build(serviceName='appsmarket', version='v2', http=http)
lists = service.licenseNotification().list(
  applicationId=APP_ID, timestamp=0, max_results=10).execute(http=http)

我收到以下错误:

apiclient.errors.HttpError: <HttpError 403 when requesting https://www.googleapis.com/appsmarket/v2/licenseNotification/<APP_ID>?max-results=10&timestamp=0&alt=json returned "Access Not Configured">

根据这个答案,我应该在谷歌上注册我的服务器的ip,但我没有找到在哪里做。

我错过了什么?

回答我自己的问题。

在 Google Cloud Console(或旧的 API Console)中有两个名称相似的服务:

  • Google Apps Marketplace SDK
  • Google Apps Marketplace API

必须启用第二个才能使许可 API 正常工作。

试试这个:

It's surprisingly hidden. 
Visit code.google.com/apis/console. 
First, make sure the service you want is enabled under "Services". 
Then go to "API Access" and specify your calling domains or IP addresses.

从您上面给出的链接的评论中

相关内容

  • 没有找到相关文章

最新更新