[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-12-21 (世界標準時間)。"],[[["The Google Slides API enables the creation and management of presentation files, including features like creating presentations, listing existing files, and replacing text."],["While the Slides API handles presentation creation and manipulation, the Google Drive API is used for listing existing presentation files using file IDs, names, and web view links."],["Developers can use the `presentations.batchUpdate` method for various tasks, such as replacing specific text strings throughout a presentation with new content using parameters like `matchCase` for case sensitivity."],["HTTP requests are the primary method of interaction with these APIs, with specific endpoints for creating presentations, listing files, and performing batch updates."],["Refer to the provided guides and documentation for code samples, language-specific implementation instructions, and further details on using the Google Slides and Drive APIs."]]],["The Google Slides API enables creating and managing presentations. Key actions include: creating a new presentation using `presentations.create` or `files.create` methods, specifying \"My New Presentation\" as a title. Listing existing files uses the Drive API's `files.list` method, filtering by MIME type (`application/vnd.google-apps.presentation`) to retrieve file IDs, names, and web links. Lastly, `presentations.batchUpdate` with `ReplaceAllTextRequest` allows replacing text throughout a presentation, demonstrated by replacing \"Gizmo Corp.\" with \"Gadget Inc.\".\n"]]