Node.jsでGoogle Slides内のテキストの書き換え
Google Slides APIをNode.jsから触ってみてます。
の記事の続きです。
batchUpdate()で更新
presentations.batchUpdateでどうやら更新ができそうです。
presentations.batchUpdate()の
presentations.batchUpdate()
の使い方がいまいち分からなかったけど、stackoverflowの投稿を参考に
presentationId: プレゼンテーションIDを指定,
resource: {
requests: {
//ここにリクエストする内容を入れる
}
}
みたいな使い方というのが分かりました。
app.js
省略
function listSlides(auth) {
const slides = google.slides({version: 'v1', auth});
slides.presentations.batchUpdate({
presentationId: presentationId,
resource: {
requests: {
replaceAllText: {
containsText: {
text: "Node.js" //置き換え前のテキスト
},
replaceText: "Hoge" //置き換え後のテキスト
}
}
}
}, (err, res) => {
if (err) return console.log('The API returned an error: ' + err);
console.log(res.data);
});
}
Node.jsというテキストをHogeに書き換えます。
実行
こんな感じで書き換えができました。
所感
今回はreplaceAllText
というリクエストをしましたが、他のリクエスト方法もあるので試していきたいです。
Author And Source
この問題について(Node.jsでGoogle Slides内のテキストの書き換え), 我々は、より多くの情報をここで見つけました https://qiita.com/n0bisuke/items/bb8ddebbbea100475957著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .