I am trying to copy slides from a source presentation and append them to the end of destination presentation. I have searched solution on SO but they use the google apps script. I am looking for a solution that can use the google slides or google drive REST API. What I have attempted so far is getting each element of the source presentation's slides and using batch updates to add them to the destination presentation, but obviously this is tedious and does not cover all cases. Does anyone have any possible ways to perform this task? Thanks in advance.
问题:
回答1:
Unfortunately, in the current stage, there are no methods for directly copying a slide (It's like the method of copyTo of Sheets API.) to other Google Slides, yet. So in order to copy a slide to other Slides, I think that there are 2 workarounds.
- After get the all objects and formats in a slide by get method, create new slide and puts the objects using batchUpdate method.
- Create an API using Google Apps Script, because the slides service of GAS has the method for directly copying a slide.
I recommend the latter, because I think that the former will be the complicated script. So I would like to propose a sample script for the latter workaround.
When you use this script, please do the following flow.
Preparation flow
- Log in to Google Drive. https://drive.google.com/drive/my-drive
- Create new standalone project.
- Please create new project at https://script.google.com/.
- Set the project name and copy&paste the following sample script.
- Deploy Web Apps.
- On the script editor, Open a dialog box by "Publish" -> "Deploy as web app".
- Select "Me" for "Execute the app as:".
- Select "Anyone, even anonymous" for "Who has access to the app:".
- Click "Deploy" button as new "Project version".
- Automatically open a dialog box of "Authorization required".
- Click "Review Permissions".
- Select own account.
- Click "Advanced" at "This app isn't verified".
- Click "Go to ### project name ###(unsafe)"
- Click "Allow" button.
- Copy "Current web app URL:".
- It's like
https://script.google.com/macros/s/#####/exec
.
- It's like
- Click "OK".
By this flow, the Web Apps was deployed as own API. In this sample, "Anyone, even anonymous" for "Who has access to the app:" was used as a test. If you want to use the access token, please modify this. You can see the detail information at below "References".
Sample script
Google Apps Script:
function doGet(e) {
var srcId = e.parameters.srcId;
var dstId = e.parameters.dstId;
var srcPage = e.parameters.srcPage;
var srcSlide = SlidesApp.openById(srcId);
var dstSlide = SlidesApp.openById(dstId);
var copySlide = srcSlide.getSlides()[srcPage - 1];
dstSlide.appendSlide(copySlide);
return ContentService.createTextOutput("Done.");
}
curl command:
After Web Apps was deployed, you can use the Web Apps as own API. The sample curl for requesting to the deployed Web Apps is as follows.
Before you use this, please set the source and destination file ID of Slides. When you want to copy the 1st page of the source Slides, please set 1
to srcPage
. And also please set the endpoint which was retrieved above.
curl -GL \
-d "srcId=### fileId of source Slides ###" \
-d "dstId=### fileId of destination Slides ###" \
-d "srcPage=1" \
"https://script.google.com/macros/s/#####/exec"
When this command is run, Done.
is returned. At that time, you can see the appended slide to the last page in the destination Slides.
References
- Standalone Scripts
- Web Apps
- Taking advantage of Web Apps with Google Apps Script
- openById()
- getSlides()
- appendSlide()