google-apps

How to use the Google Email Settings API and the OAuth2 for Apps Script Library to set email signatures for users in a Google Apps domain

我们两清 提交于 2019-12-18 03:46:49
问题 This is my first time using the "Answer your own question" feature. I hope I'm doing this right. My Title triggered a warning that my question looks subjective and will probably be deleted. I searched the site and didn't find any questions that matched the level of detail that I put into my response below, so I'm just trying to help out some fellow programmers by posting this. As the administrator of a Google Apps domain, how do you use the Google Email Settings API with OAuth 2 to

Error: invalid_client no application name

只谈情不闲聊 提交于 2019-12-17 08:02:09
问题 I am using Google Apps API for my application and trying to authorize it using OAuth2. I have created a project and an application within it using the Google API console. I am using the following URL for authorization: https://accounts.google.com/o/oauth2/auth&scope=https://www.googleapis.com/auth/admin.directory.user&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&client_id=(my application clientid) I get the following error, Error: invalid_client no application name Request

Use bash curl with oauth to return google apps user account data? [closed]

柔情痞子 提交于 2019-12-17 06:10:41
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I am looking for a fairly simple method to use curl to return information about a batch of users accounts (like createddate or lastlogin) in google Apps. I am very inexperienced with curl and the Google Apps api's. Does anyone know of a good introductory article on how to use curl with Oauth to request user

Script to summarise data not updating

那年仲夏 提交于 2019-12-17 03:43:48
问题 I have a Google spreadsheet of timesheet data; it has a sheet for each month, each sheet is a lot of six column blocks, one block per client. I have created a summary sheet that goes and gets the total for each clients and displays it in a list: function getClientTotals(sheetname, colcount) { colcount = colcount ? colcount : 6; var res; var ss = SpreadsheetApp.openById('myid_goes_here'); if(ss) { res = []; var totrow = ss.getRange(sheetname + '!A1:ZZ1').getValues()[0]; for(var i = 0; i <

Script to summarise data not updating

懵懂的女人 提交于 2019-12-17 03:43:09
问题 I have a Google spreadsheet of timesheet data; it has a sheet for each month, each sheet is a lot of six column blocks, one block per client. I have created a summary sheet that goes and gets the total for each clients and displays it in a list: function getClientTotals(sheetname, colcount) { colcount = colcount ? colcount : 6; var res; var ss = SpreadsheetApp.openById('myid_goes_here'); if(ss) { res = []; var totrow = ss.getRange(sheetname + '!A1:ZZ1').getValues()[0]; for(var i = 0; i <

Google Apps Custom Domain SSL configured but connection fails

旧时模样 提交于 2019-12-14 03:58:39
问题 I've followed the steps on https://cloud.google.com/appengine/docs/ssl and https://support.google.com/a/answer/2644334. I have a custom domain, have correctly uploaded the certificate. Everything seemed to be working, but then an hour later every https: connection fails with ERR_CONNECTION_CLOSED (in Chrome). How can I debug this? My www CNAME record is ghs.googlehosted.com I'm accessing the site via the www subdomain https://www.example.com Google Apps shows as serving SNI only for the

how to make icons in google custom menu

血红的双手。 提交于 2019-12-14 01:57:39
问题 In google apps (docs, sheets, etc) Is it possible to make icons in custom menus similar to ones in the insert menu? If so how would I go about it? html service? The ones next to chart, link, image or even next to bold, italic, etc Thanks 回答1: There is no exposed method to put graphic icons in the menu. The best you can do is use Unicode characters such as ✘ and ☢ 来源: https://stackoverflow.com/questions/42032379/how-to-make-icons-in-google-custom-menu

Find apps script published URL from file URL - search files by published Web App URL

◇◆丶佛笑我妖孽 提交于 2019-12-13 18:08:11
问题 We inherited quite a few Google Apps Script projects from our client's previous developer. The Apps Scripts are deployed on Google sites (sites.google.com) to various pages through embedded widgets. Whenever we have needed to work on one of them, we have been able to locate the project by: Going to the page at sites.google.com that contains the widget, Editing the widget, Noting the published URL, Going to script.google.com, Open/edit projects that are named "like" what we are looking for,

How to declare webview ownership in google play console?

时光毁灭记忆、已成空白 提交于 2019-12-13 08:12:11
问题 My android app is build by adding whole webview of my web application which I want to mainly launch for android users not for browser based users. But I get my app suspended from google play store review team. Reason being that they have no proper information about ownership of my webview content. I just want to know that how to prove that my webview content is under my ownership. 回答1: I've never had success with webview. I've did some investigation a long time ago and I found that RSS,

Discovery Document for Google Email Migration API v2?

扶醉桌前 提交于 2019-12-13 07:08:19
问题 Today Google announced a new version of the Email Migration API. The API appears to follow Google's normal REST format but I've been unable to determine the service name and version information for the API in order to use it with the google-api-python-client. Is there a discovery document for the new API and if so what is the service name and version? 回答1: The discovery document was slightly delayed from the actual release, but it's now available through the discovery service or directly here