2

我创建了一个新的市场应用程序并将其安装在我的域中。我正在尝试使用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,但我没有找到在哪里做。

我错过了什么?

4

2 回答 2

2

回答我自己的问题。

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

  • Google Apps Marketplace SDK
  • 谷歌应用市场 API

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

于 2013-12-26T14:48:08.963 回答
1

尝试这个:

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.

根据您在上面给出的链接的评论

于 2013-12-26T14:32:07.907 回答