Error while posting to chrome webstore

I am getting an error when posting my demo project (google app platform app) to the chrome web store on my own domain. I am getting the following error.

"API Console with id specified in api_console_project_id field of manifest does not support Google Apps Marketplace SDK.

I have included the Google Apps Marketplace SDK and the Google Apps Marketplace API for a specific project.

Also, I didn't get my app reviewed by google. Should I receive this review even if I publish it on my own domain?

Update:

Manifest file

{
    "name": "Demo of single sign on",
    "version": "0.3",
    "manifest_version": 2,
    "description": "Demo of single signon",
    "icons": {
        "128": "images/big.png",
        "16": "images/small.png"
    },
    "container": ["DOMAIN_INSTALLABLE"],
    "api_console_project_id": "681817309175",
    "app": {
        "launch": {
            "web_url": "https://demoappnamehere.appspot.com"
        }
    }
}

      

sdk settings

developer console

enter image description here

+3


source to share


3 answers


Apparently the Google Apps Marketplace SDK should not only be enabled but also configured.

So:

  • Go to Google Developer Console .
  • Choose your project.
  • Go to APIs and auth APIs>
  • On the All APIs tab, use the search box to find the Google Apps Marketplace SDK and click on it.
  • Click Enable API. If you've followed the recommendation in the Marketplace bug, you've already done all of this.
  • On the Google Apps Marketplace SDK page, select the API Configuration tab and then click the link to go to the source console.
  • In this new form, be sure to fill in all the required fields (ok, click "Save" at the bottom and see what happens).


I've tested many other "solutions" before I can make this work. Just in case, the above procedure doesn't work as it did, here's what I also did in the developer console:

  • Enable Google Cloud Deployment Manager API
  • Enable Drive SDK
+3


source


The ID "api_console_project_id": "681817309175",

looks wrong. Have you confirmed that this matches the "Project ID" listed in the "Overview" section of the API Console (top left of the page)?



0


source


In the first screenshot, you need to load all app icons (32x32, 48x48 ...), specify the TOS Url, add any OAuth2 to the app area, and at least select either Universal Navigation Extension or Disk Extension. forget to click the "Save" button at the bottom and make sure the changes are saved successfully.

0


source







All Articles