google-apps-marketplace

Unable to deploy Contextual Gadget using Google Apps Extensions Console

夙愿已清 提交于 2019-11-29 21:17:57
问题 Following these instructions: https://developers.google.com/google-apps/extensions-console/ I am unable to deploy an in-house Contextual Gadget to a Google Apps Domain. Creating, assigning Manifest/Extractor(including validation) and deploying appear to work fine, however Granting Access results in a 302 (redirect) to the Google Apps Admin Console and the Gadget does not show up in the Marketplace Apps Management console. UPDATE - Developed a workaround 1) Follow instructions https:/

Getting a random error: policy_enforced on most Google Apps when using OAuth 2

牧云@^-^@ 提交于 2019-11-29 00:29:28
Since yesterday (October 2nd, 2014), there seem to be random errors when trying to access apps that use OAuth 2. There are two problems: We can't access the apps we use for our internal management. Our clients that cannot login through their Google Apps sign in. Here are the details of the error: Request Details from_login=1 response_type=code scope=email profile https://www.googleapis.com/auth/drive.file access_type=online redirect_uri=https://login.xero.com/SignIn/GoogleOAuthCallback as=-5fc43****cf15779 pli=1 client_id=1061085901692-8vaq9******vuv2d2cro0eervp04j7a.apps.googleusercontent.com

Unable to get thumbnail using Google Drive API

筅森魡賤 提交于 2019-11-28 19:46:00
My application is using an OAuth2 service account to copy a file from a user's Google Drive. I'm using the Google Drive client api via Java to obtain a Drive object with the requested scope being " https://www.googleapis.com/auth/drive ". I'm able to make a copy of the Google Docs document, but the thumbnailLink is not retrievable. I'm getting a 403 Forbidden error. I'm quite confident this is a bug on the Google side. If I put a breakpoint in my code on he line that gets the 403 Forbidden result, I can (when logged in as the user whose Google Drive I'm copying from) use the thumbnailLink to

Error consuming customerLicense App Marketplace with Service Account OAuth2

蓝咒 提交于 2019-11-28 06:02:15
问题 SOLUTION I figured out how to solve this problem. First of all here is my implementation with Service Account: // Build service account credential. GoogleCredential credential = new GoogleCredential.Builder().setTransport(httpTransport) .setJsonFactory(JSON_FACTORY) .setServiceAccountId(SERVICE_ACCOUNT_EMAIL) .setServiceAccountScopes(Collections.singleton("https://www.googleapis.com/auth/appsmarketplace.license")) .setServiceAccountPrivateKeyFromP12File(new File("/path/to/mykey/key.p12")) //

Getting a random error: policy_enforced on most Google Apps when using OAuth 2

杀马特。学长 韩版系。学妹 提交于 2019-11-27 15:22:53
问题 Since yesterday (October 2nd, 2014), there seem to be random errors when trying to access apps that use OAuth 2. There are two problems: We can't access the apps we use for our internal management. Our clients that cannot login through their Google Apps sign in. Here are the details of the error: Request Details from_login=1 response_type=code scope=email profile https://www.googleapis.com/auth/drive.file access_type=online redirect_uri=https://login.xero.com/SignIn/GoogleOAuthCallback as=

Unable to get thumbnail using Google Drive API

假如想象 提交于 2019-11-27 12:32:05
问题 My application is using an OAuth2 service account to copy a file from a user's Google Drive. I'm using the Google Drive client api via Java to obtain a Drive object with the requested scope being "https://www.googleapis.com/auth/drive". I'm able to make a copy of the Google Docs document, but the thumbnailLink is not retrievable. I'm getting a 403 Forbidden error. I'm quite confident this is a bug on the Google side. If I put a breakpoint in my code on he line that gets the 403 Forbidden

Google Apps Marketplace SDK + Domain-wide OAuth 2 SSO

孤街醉人 提交于 2019-11-27 09:29:36
We've been working on an Google Apps-app meant to be installed by a domain administrator. We initially tried to list it via the (now deprecated) market listing, but all new submissions must now go through the Google Apps Marketplace SDK. We're having an issue with the new GAM SDK SSO however - despite having installed it on our domain internally, each user is prompted via the consent screen when sending them to the OAuth login url. The OAuth url is asking for the same permission scope as is registered in the GAM SDK configuration screen. The docs seem to be entirely conflicting on how to pull

How to get app market version information from google play store?

流过昼夜 提交于 2019-11-27 00:27:51
How can I get the application version information from google play store for prompting the user for force/recommended an update of the application when play store application is updated i.e. in case of the user is using old version application. I have already gone through andorid-market-api which is not the official way and also requires oauth login authentication from google. I have also gone through android query which provides in-app version check, but it is not working in my case. I found the following two alternatives: Use server API which will store version info Use google tags and

Google Apps Marketplace SDK + Domain-wide OAuth 2 SSO

让人想犯罪 __ 提交于 2019-11-26 14:46:51
问题 We've been working on an Google Apps-app meant to be installed by a domain administrator. We initially tried to list it via the (now deprecated) market listing, but all new submissions must now go through the Google Apps Marketplace SDK. We're having an issue with the new GAM SDK SSO however - despite having installed it on our domain internally, each user is prompted via the consent screen when sending them to the OAuth login url. The OAuth url is asking for the same permission scope as is

How to get app market version information from google play store?

本小妞迷上赌 提交于 2019-11-26 09:21:14
问题 How can I get the application version information from google play store for prompting the user for force/recommended an update of the application when play store application is updated i.e. in case of the user is using old version application. I have already gone through andorid-market-api which is not the official way and also requires oauth login authentication from google. I have also gone through android query which provides in-app version check, but it is not working in my case. I found