Questions tagged [google-slides-api]

Google Slides lets you create, edit, collaborate, and deliver presentations using compelling themes and fonts, embedded video, charts, animations, and more.

Apps can integrate with the Google Slides API to create beautiful slide decks automatically from user- and system-provided data. For example, you could use customer details from a database and combine them with predesigned templates and selected configuration options to create finished presentations in a fraction of the time it would take to create them manually.

Important Links

451 questions
2
votes
2 answers

Update text of an object in google slides using google slides API

I am not able to find the right way to update text of existing objects using the google slides API. Currently I am deleting the slide and creating it again.
Rohan Sharma
  • 1,416
  • 2
  • 14
  • 19
2
votes
2 answers

Google Slides - programmatically Get Publish to Web Link

Is there a way to "Publish to the Web..." a Google Slides presentation programmatically? Unlike Sheets, Slides takes in additional parameters for publishing. I am trying to figure out how to push the presentation programmatically and get the…
Bhuvan
  • 1,523
  • 4
  • 23
  • 49
2
votes
1 answer

Updating linked table in Google Slides API

I see that there's a method for updating a linked Chart in a Slide (RefreshSheetsChartRequest), but in my presentation I have Tables pasted in from Google Sheets that are linked to data in a spreadsheet. I can update these manually by clicking the…
spiantino
  • 21
  • 2
2
votes
1 answer

Combine Google Slides presentations via API?

How can I programmatically copy slides from one Google Slides presentation to another? Ideally, App Scripts or something along those lines but running something on a local Linux server would work well as well. For example, perhaps every N hours,…
A pu
  • 23
  • 2
2
votes
0 answers

How to Updating rowHeight table google slide api

I'm using Google Slide API to generate presentation, and I want to create table using this API, I try this function to do it and it worked well, but it create table with "rowHeight": { "magnitude": 3000000, "unit": "EMU" }, I want to modify this…
Malki Mohamed
  • 1,578
  • 2
  • 23
  • 40
2
votes
1 answer

Download a Google Slides Presentation to a PDF Document

I'm using google slide api to generate google slide presentation. but I want to convert this presentation on PDF unsing this API, I was looking in G-slide api but I didn't found anything
Malki Mohamed
  • 1,578
  • 2
  • 23
  • 40
2
votes
3 answers

How to duplicate slide using google slide api

I have installed google slide API and it works perfectly. I can add and modify slide, but I need to duplicate a specific slide by id. I follow docmumentation GOOGLE SLIDE API and I found this function Google slide api duplicate object but it give me…
Malki Mohamed
  • 1,578
  • 2
  • 23
  • 40
2
votes
3 answers

Copy one slide from Google Slides into a new presentation using API

I wish to use Google Drive API for creating a new Google Slides, but with one slide copied from another previous presentation. My question is, is that possible to build a new Google Slides and insert slides (singularly) into the new one. Or is it…
Nishutosh Sharma
  • 1,926
  • 2
  • 24
  • 39
1
vote
1 answer

screenshot from copy of google slide

I'm new to google App Script. I made this script for copying a template slide show and after the copy is made i fill it with tekst of a google sheet. When it's ready I want to make screenshots of the pages of the slides. I found this code on the…
1
vote
0 answers

Get the speaker notes from embeding

I am builiding a website for slide teaching based on Google Slides. However, i cannot get the speaker notes from slides. As the figure below, i created a html website including "get speaker notes" button and a text box with slide frame. Then when i…
1
vote
0 answers

How can you make an animated GIF not play until you click on the slide that it lives on?

When you add a GIF to Google Slides, it will play even if you are not on the slide that it lives on. If you refresh the page, you will see that the GIF starts to play in the thumbnail. Therefore, when you reach the slide in presentation, the…
1
vote
1 answer

Why do I get this error most of the time trying to use the google API to upload and insert into slides a picture?

I am trying to generate slideshows automatically on Google Slides via the api in python3 and this involves uploading a graph to a particular slide. I created a service account with the slides and drive API enabled and I have the security key…
1
vote
1 answer

Error code 401 when create a google slide API on Laravel

I'm studying google slide API on laravel framework now. i want to create a simple template at first but i stuck. i got this error. { "error": { "code": 401, "message": "Request is missing required authentication credential. Expected OAuth 2 access…
ferdinand
  • 325
  • 2
  • 14
1
vote
1 answer

Google app scripts not replacing all text in a slide

I have a map of slide numbers with an array of associated variables. const slidesMap = { 0: ['firstName', 'date'], 10: ['diversityScore', 'diversityDef', 'butyrateEfficiency', 'propionateEfficiency'], 15: ['bacteria_1_three',…
kaiak
  • 1,759
  • 1
  • 13
  • 11
1
vote
1 answer

How to fix/freeze theme color of a shape in google slide using app script

I am trying to freeze the shape color in google slide. So, if the user changes the theme, the shape color should not change. I understand google sheet support Theme and RGB type. I am using below snippet to fix the RGB color. if…