###チャットワークをスプレッドシートを連携させ、スプレッドシートの更新時にチャットワークにメッセージが届くようにしたい。
ホストへのリクエストでエラーがでる。
発生している問題・エラーメッセージ
Exception: Request failed for https://api.chatwork.com returned code 400. Truncated server response: {"errors":["Parameter 'body' is too short"]} (use muteHttpExceptions option to examine full response)
該当のソースコード
function postChatwork(message) {
var payload = {
'body' : message
};
var headers = {
'X-ChatWorkToken' : TOKEN
};
var options = {
'method' : 'post',
'payload' : payload,
'headers' : headers
};
UrlFetchApp.fetch('https://api.chatwork.com/v2/rooms/' + ROOM_ID + '/messages', options);
}
あなたの回答
tips
プレビュー