google-apis-explorer

Revisions list and get missing information

心已入冬 提交于 2019-12-02 09:54:32
Using the Google APIs Explorer as well as the official C# library for Google Drive API v3 , the response is missing most of the documented fields . I specifically need access to who did the revisions, which should be accessible via $.lastModifyingUser . I've tried this on my domain admin account as well as a service account, so it shouldn't be a permission issue, at least not that I can see. What am I doing wrong, if anything? List : { "kind": "drive#revisionList", "revisions": [ { "kind": "drive#revision", "id": "1", "mimeType": "application/vnd.google-apps.spreadsheet", "modifiedTime": "2016

gmail with table in message body is not getting displayed in mail but table data is displayed

泪湿孤枕 提交于 2019-12-01 14:02:00
This is my actual output This is my expected output when a mail is sent with html table along with file attachment(like image, pdf, etc.), table format is not displayed in mail but content of table is displayed. But when I inspect mail body table is present. Problem is that its not shown in table format. But when mail sent with html table without attachment, table format is getting displayed in mail. How to fix it. let user = await db.model('User').findOne({ _id: userId }); let filepath = fs.readFileSync(req.file.path).toString('base64'); let from = user.crmOptions.email; let raw = [ 'MIME

gmail with table in message body is not getting displayed in mail but table data is displayed

喜欢而已 提交于 2019-12-01 12:26:51
问题 This is my actual output This is my expected output when a mail is sent with html table along with file attachment(like image, pdf, etc.), table format is not displayed in mail but content of table is displayed. But when I inspect mail body table is present. Problem is that its not shown in table format. But when mail sent with html table without attachment, table format is getting displayed in mail. How to fix it. let user = await db.model('User').findOne({ _id: userId }); let filepath = fs

Google Sheets API: The caller does not have permission

北慕城南 提交于 2019-11-29 22:38:23
I'm trying to read the document from the cron: https://sheets.googleapis.com/v4/spreadsheets/<sheet_id>?key=<api_key> My document is available to anyone with the link. My #1 key settings: Application restrictions: - IP addresses (web servers, cron jobs, etc.) - I added my external IP address. - API restrictions - none My #2 key settings: Application restrictions: - IP addresses (web servers, cron jobs, etc.) - I added my external IP address. - API restrictions - Google Sheets API My #3 key settings: Application restrictions: - IP addresses (web servers, cron jobs, etc.) - I added my external

Google Sheets API v4 for Flutter/Dart

送分小仙女□ 提交于 2019-11-29 11:28:41
Will there be Google Sheets API v4 support for Dart / Flutter , if yes when is it coming? It already has support for many languages but Dart/Flutter is not listed in their guides . https://pub.dartlang.org/packages/googleapis can be used in Flutter and supports Sheets v4 See also https://pub.dartlang.org/packages/googleapis_beta for other supported APIs that are only in beta state yet. How to use Google API in flutter? Michael Davies I created a project, enabled the sheets API for it, then created a 'robot-style' service account, and download the key as JSON. I then created a Google Sheet, and

YouTube Data API no longer returns active live streams from search.list

强颜欢笑 提交于 2019-11-29 09:27:36
问题 I wrote an application that uses YouTube Data API V3's search.list, which was able to pull active live streams for a specified channel (working since 2018) using the following: https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=UCSJ4gkVC6NrvII8umztf0Ow&type=video&eventType=live&key={MYAPIKEY} The above no longer returns any results for me as of September 12, 2019. Broadening the search to all videos for a specified channel also no longer shows the active live stream: https:/

publishedAfter parameter appears to be broken now

独自空忆成欢 提交于 2019-11-29 07:53:26
I used daily this request to googleapi in my application: GET https://www.googleapis.com/youtube/v3/search?part=snippet&channelId={CHANNEL_ID}&maxResults=25&order=date&publishedAfter=2019-03-15T18%3A01%3A02.000Z&publishedBefore=2019-03-17T09%3A58%3A15.000Z&type=video&key={API_KEY} Timestamps were of course changed each time. This worked fine till yesterday. Today this command did not work properly and returns results from different (much larger) time period. Their timestamps are 25 and appear random: "2018-10-04T10:06:56.000Z" "2015-03-05T16:55:26.000Z" "2018-09-24T08:05:59.000Z" "2019-03

Google Sheets API v4 for Flutter/Dart

折月煮酒 提交于 2019-11-28 04:59:19
问题 Will there be Google Sheets API v4 support for Dart/Flutter, if yes when is it coming? It already has support for many languages but Dart/Flutter is not listed in their guides. 回答1: https://pub.dartlang.org/packages/googleapis can be used in Flutter and supports Sheets v4 See also https://pub.dartlang.org/packages/googleapis_beta for other supported APIs that are only in beta state yet. How to use Google API in flutter? 回答2: I created a project, enabled the sheets API for it, then created a

How do I update my google sheet in v4?

流过昼夜 提交于 2019-11-28 02:27:20
I am new in google sheets v4 and I just want to know how can I update my google sheet in v4. I am using Nodejs and following is the code sample link which I am using Method: spreadsheets.values.update You can use the sample script of the link . In you case, combining Quickstart and the sample script may be useful for you. The sample script is as follows. In this sample script, the text of sample text is imported to the cell a1 of Sheet1 . Sample script : var fs = require('fs'); var readline = require('readline'); var google = require('googleapis'); var googleAuth = require('google-auth-library

publishedAfter parameter appears to be broken now

﹥>﹥吖頭↗ 提交于 2019-11-28 01:44:41
问题 I used daily this request to googleapi in my application: GET https://www.googleapis.com/youtube/v3/search?part=snippet&channelId={CHANNEL_ID}&maxResults=25&order=date&publishedAfter=2019-03-15T18%3A01%3A02.000Z&publishedBefore=2019-03-17T09%3A58%3A15.000Z&type=video&key={API_KEY} Timestamps were of course changed each time. This worked fine till yesterday. Today this command did not work properly and returns results from different (much larger) time period. Their timestamps are 25 and appear