送信処理のみ公開という名のメモ
Last active
August 29, 2015 14:03
-
-
Save tanjo/53dfacbd502730cef350 to your computer and use it in GitHub Desktop.
Spreadsheet2Hipchat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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