461 questions
0
votes
1
answer
79
views
How do I specify a "q" parameter for www.googleapis.com/drive/v3/files
In the Google Slides API sample, it says to do a GET request:
GET https://www.googleapis.com/drive/v3/files?q="mimeType=application/vnd.google-apps.presentation"&fields=files(id,name,...
Advice
0
votes
4
replies
58
views
Slides Add-On accessing Sheets Data and Narrowing Scopes
I have an Add-On under review in the Google Marketplace.
My Add-On runs in Google Slides and needs to access Google Sheets data to create various visuals in Slides. Specifically my Add-On pulls data ...
0
votes
0
answers
40
views
Inconsistent Master/Theme Application when Batch-Inserting Slides via Apps Script
I am facing a strange and inconsistent issue with theme application when generating presentations using the Slides API and an Apps Script helper function.
My Goal:
I'm building a service to generate ...
0
votes
1
answer
104
views
Google Drive API: gapi.client.drive.files.copy returns 404 for existing file (Slides template)
I'm trying to copy a Google Slides template using the Google Drive API with gapi.client.drive.files.copy, but I always get a 404 error, even though the file exists and is owned by the same account I'm ...
1
vote
0
answers
67
views
Getting Google Presentation Slide Ids from Public Presentations
I'm trying to export all slides from a public presentation so that I use them in my program.
I'm aware that I can simply use the URL
https://docs.google.com/presentation/d/{PRESENTATION_ID}/export/...
0
votes
1
answer
84
views
Google Slides add-on vrerification oauth scope
I'm now oauth verification for the Slides add-on by google apps script.
First, I use drive.readonly scope. OAuth Dev teams point use drive.file scope instead of drive.readonly.
So I rewrite my app ...
0
votes
1
answer
132
views
Can Slides API use only drive.file scope
I oauth verification for the Slides add-on.
OAuth Dev verification point next mail.
Minimum Scope Requirement
You requested the following sensitive scope(s):
https://www.googleapis.com/auth/...
0
votes
0
answers
134
views
Get the current active slide of a google slide embedded in an iframe using javascript
I have a embedded google slides into an iframe.
<iframe
id="presentation-iframe"
src={`https://docs.google.com/presentation/d/{presentationId}/embed`}
width="...
2
votes
1
answer
105
views
How to add slides from another presentation using the Google Slides API in PHP?
I have a slide file called 'Slide A'. The file ID is simply 'A00001'.
There is another slide file called 'Slide B'. The file ID is simply 'B00002'.
I want to add the pages from Slide B into Slide A.
I ...
0
votes
1
answer
84
views
Export Google Slides to Image / PDF
I'm trying to turn Google Slides into PDF or IMAGE format, and I'm having a lot of trouble finding a solution that is not 10 years old and still working.
0
votes
1
answer
117
views
Mix text and list in one shape on a Google Slide using Google Apps Script
I'm using Google Apps Script (SlidesApp) to dynamically generate a Google Slides presentation.
On one of the slides, I need to mix text and a list.
I prefer to keep these both within the same textarea ...
0
votes
1
answer
309
views
How to update a chart in Google Slides dynamically?
I am trying to update the chart dynamically that is embedded in a Google Slides, but it throws an error at me.
This is the function that I came up with to replace some specific text that is placed in ...
0
votes
2
answers
618
views
How to order placeholder elements in Google Slides for usage in Google Apps Script
EDIT: Final solution has been added as answer but I marked Tanaike's answer as solution as he pointed me towards the right direction.
I'm setting up a Google AppScript to automate a bit of reporting.
...
0
votes
1
answer
474
views
How to create sub bullet points (nested bullet points under bullet points) using Google Slides API
I'm trying to use the Google Slides API to create nested bullet points within a paragraph. Currently, I'm able to create a paragraph with bullet points, but I'm struggling to create sub-bullet points (...
0
votes
2
answers
267
views
Add hyperlink efficiently to text just replaced on Google Slides
I am inserting a list of instagram handles from Google Sheets to Google Slides using Google Apps Script.
The Google Sheets contains a list of instagram handles, such as @Apple, @Google, etc. For ...