I have developed a gmail addon and wanted to test the unpublished addon in another user of same domain. I created a new version deployment and tried installing.
With that id i tried installing in other account but getting this error Invalid developer add-on. Please ensure the ID is correct and that your account has permission to access the add-on.. I was thinking that i need to provide permission some where for other users to access it? Can some one help me with what change i should make so that i can add it to any user in same domain and test?
My Manifest file
{
"timeZone": "America/Los_Angeles",
"dependencies": {
"enabledAdvancedServices": [{
"userSymbol": "AdminDirectory",
"serviceId": "admin",
"version": "directory_v1"
}, {
"userSymbol": "AdminReports",
"serviceId": "admin",
"version": "reports_v1"
}]
},
"oauthScopes":
["https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/script.external_request",
"https://www.google.com/m8/feeds",
"https://www.googleapis.com/auth/admin.directory.user.readonly"],
"urlFetchWhitelist": [
"myDomain.com/""
],
"gmail": {
"name": "Great",
"logoUrl": "Url",
"contextualTriggers": [{
"unconditional": {
},
"onTriggerFunction": "buildAddOn"
}],
"primaryColor": "#4285F4",
"secondaryColor": "#4285F4",
"openLinkUrlPrefixes": ["myDomain.com/"]
}
}