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
0
votes
0 answers

How to merge data from google sheet into google slide (all data into one google slide rather than multipl slide)

I am new to google script. I have a project to merge data from the google sheet into google slide. I need to create a slide where all data is merge into a single file slide. I have google many solution but it seems not working. Even though I have…
0
votes
0 answers

Google Slides Linked Items

I'm trying to right a script that will loop through all linked items in a google slide and update then automatically at a given time. I've managed to get this working for charts that I have linked from a spreadsheet, but can't seem to find a way to…
jimbob
  • 63
  • 1
  • 2
  • 6
0
votes
0 answers

The Google Slides API Node.Js request is misssing valid authentication credential

I've been getting this error: Expected OAuth 2 access token, login cookie or other valid authentication credential whenever I run my program. Here is my code. const fs = require('fs'); const readline = require('readline'); const {google} =…
Arkin Solomon
  • 592
  • 1
  • 5
  • 23
0
votes
1 answer

Node.JS Google Slides API TypeError: Cannot read property 'presentations' of undefined

I am fairly new to Node.JS and the Google Slides API. I've been using the quickstart and modifying it and have been getting an error: (node:22396) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'presentations' of undefined This…
Arkin Solomon
  • 592
  • 1
  • 5
  • 23
0
votes
0 answers

How to attach Google Slides with Gmailapp sendemail

I am trying to send some google slides from the drive as attachment to Gmailapp sendemail function. It always seem to send pdf, and if I use blob it sends a corrupt file which doesnt open on windows. Here is what I am doing: function testemail() { …
0
votes
1 answer

Bring the pageElements to front or back using apps script in Google Slides

The stacking order is determined by the order by which they are inserted into the slide. However, some of the page elements in slides remain hidden. Is there a way to change the Order of objects in Google slides using apps script?
Code Guy
  • 3,059
  • 2
  • 30
  • 74
0
votes
0 answers

Access Slide link through AppScripts/Google API?

If you copy and paste a slide from one presentation to another manually, you are given the option to "link" the two. I haven't found a way to access this link through AppScripts or the REST API, but wanted to verify. Questions that I have seen in…
0
votes
1 answer

Google Slide API getting oauth2Client.getToken

I am following this tutorial from Google Slide API. Google Slide After setting up Google project etc I run the code but it stops here and asking this questions: "Enter the code from that page here" Where do I get this code? It also opens my document…
Amir
  • 1,667
  • 3
  • 23
  • 42
0
votes
1 answer

How can I set the font size inside a shape in SlidesApp?

Until now I haven't found any relation between the shape object and the text font size. And the text that I set is exceeding the shape size limits. Someone has found a method to deal with that?
0
votes
0 answers

Google Slide find text and log it

I am writing a script that is supposed to fill variables on a Google Slides document using information in cells on a Google Sheets document. I have that part of the script working, but I would like to do some error checking before hand to check that…
0
votes
2 answers

Google Slides tutorial code does not apply desired filename to a copied file

I am following Google's "Data Merge" tutorial to import data from Google Sheets into Google Slides, and the part that does not work fully is "Copying an existing presentation." When I run the provided Apps Script code, I am getting a copy of the…
0
votes
0 answers

I'm looking for better Google Slides Animation Settings - API or other

I want to get a partial arch to an animation so that my image stays reasonably horizontal on the stage as it travels from right to left. Currently, the spin animation sets a full spin of 360 deg on any object and its slow speed is way too fast for…
lukeo25
  • 1
  • 2
0
votes
1 answer

Google Slides Error

I am new to Google Slides API. I followed the steps in their QuickStart example at https://developers.google.com/slides/quickstart/java and that runs fine. I am now trying to create a presentation by following the steps at…
Paddynski
  • 11
  • 2
0
votes
2 answers

Exported Google Slides presentation does not include recent changes

I have written some code to automatically add in a user's name to a template Google Slides file. This template is essentially a certificate, and I'm trying to automate the generation of said certificate for each user. Unfortunately, when I try to…
0
votes
1 answer

Google Slides API with Django Shell

Per the example at https://developers.google.com/slides/quickstart/python, I tried: $ python manage.py shell --settings=myapp.settings-test In [1]: from apiclient.discovery import build ...: from httplib2 import Http ...: from oauth2client…
Vishal
  • 2,097
  • 6
  • 27
  • 45