irh00315
投稿
コメント
私もGASで検証していまして、以下のような記述でBotの部分更新(defaultRichmenuIdの登録)ができたのですがいかがでしょうか? ~~~ let headers = { "authorization": "Bearer " + accessToken, "Content-Type" : "application/json" } let bodys = { "defaultRichmenuId":"richmenuId" } let options = { "headers": headers, "method" : "patch", "payload" : JSON.stringify(bodys) } const botUri = "https://www.worksapis.com/v1.0/bots/" + botId let response = UrlFetchApp.fetch(botUri,options) ~~~
API 全般 2022.09.15