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
1 answer

Google Slides API deleteObject() when object not exists

I want to update an existing object/image in a Google Slide. This works as long as the object exists: var requests = [ { "deleteObject": { "objectId": 'image01' } }, { "createImage": { "url": imageUrl, …
Roberto B
  • 111
  • 2
  • 10
0
votes
1 answer

Google Slides API replace the image but not remained its photograph and size

First I got the old image object as below: I applied Google Slides API and set the same size code as below: It can be seen as I set the same size of the pics but the shape is different.
0
votes
2 answers

Unlink all charts in Google slides with Google App Script

I use a function to update charts in my presentation. This presentation needs to be shared, but will also be updated periodically. Now, I copy the presentation to keep the original presentation for updates, and unlink all charts one-by-one. I am…
0
votes
1 answer

Unable to export a google slide as pdf format on server side

Here is my code for testing exporting files from google drive on server side. import logging from flask import Flask, render_template, request from googleapiclient.discovery import build from googleapiclient.http import MediaIoBaseDownload from…
0
votes
2 answers

How to discover the method signature of a google api?

I want to use python google api client library to retrieve the data of my google slide. The python code should be equivalent to this REST API call in term of outcome. GET…
Anthony Kong
  • 37,791
  • 46
  • 172
  • 304
0
votes
1 answer

Google slides API - setting a table's columnWidth

Im trying to produce a table that looks similar to a different table i get from another presentation, but the width of the table columns is incorrect. I noticed that there is no batch update request for changing the table column properties. is there…
Ben Ben Sasson
  • 103
  • 2
  • 8
0
votes
1 answer

Can't enable Google Slides API?

When I was trying to enable Google Slides API, the instruction tells me to go to the below address and enable the Google Slides API, but I can't find it among other Google Apps API. Does anyone know other ways to enable Google Slides API, or where I…
0
votes
1 answer

Google Slides API pages.get()

I'm currently trying the Slides Google API and I've done the quick start guide so I could understand how this works (I have to say I'm not a expert developer). After trying different things, I have reached a problem. I have a presentation on my…
0
votes
1 answer

Create presentation with entire JSON on Google Slides API

Hello everyone (sorry for my english) I have a problem with Google Slides API, I need to duplicate a Google Slides Document from an account to an another (so I can't use Google Drive API with the function "copy"). For that, I used Google Slides API…
YasserST
  • 3
  • 4
0
votes
1 answer

how to include google slide UI tool for generating slide using google slide api in javascript

how to include google slide UI tool for generating slide using google slide api using javascript. I have read the documentation and services which google slide offers. But do we need to manually create the ui screen for creating and editing the…
user6457240
0
votes
1 answer

HTTPError 401 with Google Slides API & OAuth2 on App Engine

I'm trying to use the Google Slides API on Google App Engine, and despite using the Google code samples (specifically for OAuth2 & the Slides API on App Engine), I'm running into problems. Here is my App Engine code, with unnecessary cruft removed…
0
votes
0 answers

GoogleSlides-php-lib Update Paragraph Style class missing?

Trying to change the paragraph style of various shapes and tables on slides in order to align the text as per the documentation However looking both on github and in my local vendor I cannot seem to find the UpdateParagraphStyleRequest class? My…
0
votes
2 answers

Change chart properties in Google Slides API

I'm creating a new Google Slide file based on template, once created I need to stop the embedded charts from updating if the source sheet changes (this is for monthly reports where the underlying will change regularly). I'm using the Google Slides…
ajcooper
  • 239
  • 3
  • 15
0
votes
0 answers

Creating slides without title using md2googleslides

When using the markdown to slides application md2googleslides the following places an image on the background of a slide with a title string --- # This is a title ![](https://source.unsplash.com/78A265wPiO4/1600x900){.background} If…
themush
  • 85
  • 1
  • 5
0
votes
0 answers

Error thrown during batchUpdate for createImageRequest

While using Google Slides API request for batchUpdate request (ref: https://developers.google.com/slides/reference/rest/v1/presentations/request#createimagerequest), even when all images are valid, the library still throws this error, and it has…
Shobhit Sharma
  • 604
  • 1
  • 9
  • 18
1 2 3
29
30