Google Slides API - How way change theme via API
问题 (Sorry for my english) I have a problem when using Google Slides API. How can I choose a theme when create new presentation with Google Slides API? Thanks. 1. create a presentation function createPresentation($title) { $presentation = new Google_Service_Slides_Presentation(array( 'title' => $title )); $presentation = $this->slidesService->presentations->create($presentation); $presentationLastId = $presentation->presentationId; return $presentationLastId; } 2. append a slide protected