google-apps-marketplace

Google Apps Marketplace SDK install does not forward user to Setup URL

被刻印的时光 ゝ 提交于 2019-12-11 01:56:00
问题 I have an application that was previously working when installed from the Google Apps Marketplace SDK. For some reason things are behaving differently now. Before a user would click install, grant permissions, and be redirected to the Setup URL specified (i.e http://localhost:12345/setup/${DOMAIN_NAME} ). This used to work just fine. Now when a user clicks install they are asked which domain to install it on (like before), they consent, but no redirect takes place. When the user confirms the

Existing listing no longer editable after introduction of new Google Apps Marketplace

做~自己de王妃 提交于 2019-12-10 17:14:28
问题 This is a question for google apps marketplace support people. After the introduction of the new Google Apps Marketplace, I am no longer able to edit exising listing from my Vendor Profile in the Google Apps Marketplace. I get the following error whenever I try to edit an exisitng listing: "Error Sorry, something just went wrong. To get back to the front page follow this link." I would have thought that existing listings would still be editable from my vendor profile. Is this not the case?

How to authenticate UpgradeableApp API for migrating Google Apps Marketplace Apps from v1 to v2?

匆匆过客 提交于 2019-12-09 23:31:56
问题 we are using https://www.googleapis.com/appsmarket/v2/upgradableApp to migrate the oauth1.0 app to oauth2.0 app. We are referring to https://developers.google.com/apps-marketplace/v1migratev2 while making the call we are getting "Invalid OAuth Header" error (401) We are using consumer key and consumer secret alone. we are not using any token. I am sure that we are missing something here. But not sure what it is. Any pointers to this issue will help us. Thanks in advance. Here is the sample

Does google Drive api support 2 legged oauth?

旧巷老猫 提交于 2019-12-09 13:11:00
问题 Now, we have an application with Google Docs Api and 2 legged oauth. However,we want to migrate to Google Drive Api which uses Oauth 2.0. Can we use 2 legged oauth with Google Drive Api? Is there any example? 回答1: You should use Service Accounts: https://developers.google.com/accounts/docs/OAuth2ServiceAccount 回答2: I just started looking into this and if I have any luck I will provide more info. However, if you are using 2 legged oauth so you can work with google apps domain-wide then there

Getting domain installs for my Google Docs Add-on

霸气de小男生 提交于 2019-12-09 03:45:29
We have a Google-docs Add-on (built on Google Apps Script) for which we enabled the Google Apps Marketplace SDK - so that Google Apps Administrators could install our add-on at the domain level. We have noticed a few domains have now installed our add-on - but I can't seem to find a way to get information on which domains have installed us. Is it even possible? I have tried the Marketplace license API https://developers.google.com/apps-marketplace/v2/reference/ but it fails with a 403 error - Not authorized to access the application ID . { "error": { "errors": [ { "domain": "global", "reason":

Google Contacts API v3 does not return system groups

若如初见. 提交于 2019-12-08 12:48:25
问题 I found that Google Contacts API v3 does not return system groups when I fetch feed of all contacts: https://www.google.com/m8/feeds/contacts/default/full But if I supply v2 via GET param: https://www.google.com/m8/feeds/contacts/default/full?v=2 all system groups are returned for contact entries. Same thing when i try to fetch list of groups: https://www.google.com/m8/feeds/groups/default/full Is there another way to receive system groups? Or v3 just does not support receiving system groups

Get a list of users on a Google Apps domain

ぃ、小莉子 提交于 2019-12-08 08:35:02
问题 We have an app in the Google Apps Marketplace (the new one, i.e. using OAuth2) which needs to get a list of users in the domain. We're currently using the Provisioning API for this (which we know is deprecated, but there seems to be no better option). Lately however, we're starting to get "You are not authorized to access this API" 403's, for some domains. Does anyone know why we're suddendly getting 403's, a bug perhaps? There seem to be some other bugs as well, for example the scope https:/

Migrate application developed with the Provisioning API to the new api (Admin SDK)

大城市里の小女人 提交于 2019-12-08 07:44:32
问题 Reviewing the new api (Admin SDK) Admin SDK. I found the following problem, none of these APIs have support 2 legged for the google apps marketplace, there is a way to integrate these new apis or if in the future the google apps marketplace will support for OAuth 2.0. 回答1: The Admin SDK APIs function with Two Legged OAuth just fine, I'm using the Directory API in my marketplace app today. You'll need to go into your Vendor Profile page on the marketplace, click "Register for additional APIs"

Consent screen appearing after Google Apps installation using oauth2 while it should not

徘徊边缘 提交于 2019-12-08 05:59:50
问题 We have recently migrated our app to oauth2 in the Google Apps Marketplace. While the installation process goes very well, the first time the admin launch the app, a consent screen appears for the scopes that have already been accepted at the domaine level. The call to oauth2 at the authentication is the following: https://accounts.google.com/o/oauth2/auth?response_type=code &client_id=.... &redirect_uri=... &scope=email%20profile &state=.... &access_type=online &approval_prompt=auto &include

Getting domain installs for my Google Docs Add-on

末鹿安然 提交于 2019-12-08 05:57:29
问题 We have a Google-docs Add-on (built on Google Apps Script) for which we enabled the Google Apps Marketplace SDK - so that Google Apps Administrators could install our add-on at the domain level. We have noticed a few domains have now installed our add-on - but I can't seem to find a way to get information on which domains have installed us. Is it even possible? I have tried the Marketplace license API https://developers.google.com/apps-marketplace/v2/reference/ but it fails with a 403 error -