Skip to content

Instantly share code, notes, and snippets.

@tanjo
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanjo/53dfacbd502730cef350 to your computer and use it in GitHub Desktop.
Save tanjo/53dfacbd502730cef350 to your computer and use it in GitHub Desktop.
Spreadsheet2Hipchat

Spreadsheet2Hipcaht

送信処理のみ公開という名のメモ

function hipchat(message) {
var url = 'https://api.hipchat.com/v1/rooms/message';
var payload =
{
'room_id' : 'XXXXX', // 部屋番号が入る
'from' : '俺様のメッセージ',
'auth_token' : 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', // トークン
'color' : 'purple', // 紫色, 他の色は Hipchat API で確認
'notify' : 1, // Hipchat で通知(Macだとアイコンピョンピョン)させるか
'message' : message,
'message_format' : 'text' // text だと @xxx がいい感じ. 必要に応じて html
};
var params =
{
'method' : 'post',
'contentType' : 'application/x-www-form-urlencoded',
'payload' : payload
};
var response = UrlFetchApp.fetch(url, params);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment