google-apps

Google Apps OpenID url

拜拜、爱过 提交于 2019-12-06 19:28:52
问题 Problem: My organisation, ExampleFooBar, uses Google Apps. On our website I want to enable OpenID Single Sign-In (like StackOverflow), but only allow @examplefoobar.com email addresses to sign in. What OpenID url should I use for a Google Apps email address? As per comments on Include OpenId in drupal, the domain http://www.google.com/profiles/<username> can be used for normal Google accounts, but this doesn't work for Google Apps accounts. Google also provides the url https://www.google.com

Dashboards in Google Apps Script not rendering correctly in IE?

南笙酒味 提交于 2019-12-06 14:51:48
问题 is there a known issue with Dashboards in Google Apps Script not rendering correctly in IE? I have embedded the Dashboard App Script on a page in google sites. It renders correctly in Chrome and Firefox, but in IE the charts and filters / selectors do not look correct. 回答1: I can verify this as well. My dashboard is not rendering properly on IE v9.0.8112.16421 - some filters and charts will appear and disappear on the screen. 回答2: We use Chrome and IE8 (and I think it's permanently in quirks

How to restrict access to GAE Flexible site only for GSuite account?

别等时光非礼了梦想. 提交于 2019-12-06 14:39:17
How to restrict access to GAE Flexible site only for all account from my domain in GSuite and eventually other Google accounts that I provide explicitely. AFAIR there where something simillar in Standard GAE version in app.yaml handlers section. So my scenario: prodution versions restricted until go-live dev and stage version restricted permanently I would like to do this on the IAM level, to reject traffic to the site. But I didn't found anything in docs. Dzinek Ok, after rethink the problem and dig deeper in a documentation I found a page about dev environment - https://cloud.google.com

Google Admin SDK error Resource Not Found: domain when trying to list existing users

别来无恙 提交于 2019-12-06 13:02:25
I am trying to write a simple script to get a list of my Google Apps users using Google's python API. So far it looks like this (based on a Google example): !/usr/bin/python import httplib2 from apiclient import errors from apiclient.discovery import build from oauth2client.client import OAuth2WebServerFlow from oauth2client.client import SignedJwtAssertionCredentials client_email = 'service_account_email@developer.gserviceaccount.com' with open("Python GAPS-98dfb88b4c9f.p12") as f: private_key = f.read() OAUTH_SCOPE = 'https://www.googleapis.com/auth/admin.directory.user' credentials =

Google APPs managed “unlimited” account storage quota for service account

孤人 提交于 2019-12-06 12:34:28
问题 I have a Google account as a student. This account is managed by my university and recently the university informed us that students' accounts have now "unlimited" storage for Drive etc. To perform backups with this, I created a few service accounts in Google APIs console (XXX@developer.gserviceaccount.com). But it turns out that those accounts' storage is limited to 15GB, that is, when trying to upload files to one of service accounts that already has ~15GB in it, I get an error "the client

Upload a file to a Google Web Apps with doPost

独自空忆成欢 提交于 2019-12-06 11:58:13
I'm trying to upload a file to a Google Web App with doPost(e), as shown below. function doPost(e) { var blob = e.parameter.myFile; DriveApp.createFile(blob); } A file is then POSTed to the web app at the client side. The POST has been proved to work correctly with on my own web server. However the blob variable, in the code above, is not actually a Blob type, it is a string type. How does Google script engine prepare parameter e? Is there a way to make this work? I got the same problem here. An workaround you can do is convert your file to a Base64 string using FileReader(), upload it, and

GMAIL APP -: Google SMTP Error: 454 4.7.0 Too many login attempts, please try again later

十年热恋 提交于 2019-12-06 10:23:50
While it was possible to use Gmail/Google Apps as an SMTP server for scripted use or in any other Apps. I started getting error messages: SMTP Error: 454 4.7.0 Too many login attempts, please try again later. Sometimes you get, sometimes you don't get such error. The issue is because of Google Apps Security. You Can't use same E-mail ID with more than 2 Apps. as Gmail needs to sync it, and it is Obvious to receive such error. Even setting SPF/TXT/DKIM record is not enough for it. So try to use different E-Mail IDs for Different Apps. 来源: https://stackoverflow.com/questions/34921053/gmail-app

Python GAE app using 2-legged OAuth and 3-legged OAuth at same time

拟墨画扇 提交于 2019-12-06 10:08:53
问题 I'm coding a Python - Google App Engine application. There are 2 important things this app must do: Write in user's calendar. Write in user's profile (working with users in a Google Apps domain) First operation is easy. If I understood OAuth, this is the classical 3-legged scenario. The scenario for which OAuth was originally developed. The logged user provides credentials to the client (my app) to access the user's data (calendar) on his/her behalf. So, this can be done just with the logged

Strange error 403: “Calendar usage limits exceeded” when adding event with attendee

不问归期 提交于 2019-12-06 09:53:28
问题 I'm trying to test adding an event to my Google Calendar using Google API Explorer page at Google API Explorer - calendar.event.insert Specifying ' primary ' as the calendarId, and enabling ' OAuth 2.0 ' authorization. The request body field is as follows: { "summary": "Another test", "start": { "dateTime": "2017-01-17T11:30:00+02:00" }, "end": { "dateTime": "2017-01-17T12:00:00+02:00" }, "attendees": [ { "email": "some_mail@some_domain.com" } ] } But when clicking the ' Authorize and Execute

How to create an account on Google Apps to use Google Apps Extensions Console?

三世轮回 提交于 2019-12-06 09:29:15
问题 I am asking this question because the information on tutorials is terribly vague for a novice. Concretely, I am trying to put up an extractor to use in Gmail Contextual App. Here is where it gets complicated. To make a Gmail Contextual App, I need to upload my app code as extractor on Google Apps Extensions Console, but I am just unable to access or know where is this page. All it say here is that Point your browser to http://code.google.com/googleapps/console/a/yourDomainName. Well I did