Created
August 8, 2016 02:57
-
-
Save TomckySan/de88284723a2bf7320d00bd4caa76839 to your computer and use it in GitHub Desktop.
GASからChatworkへ打刻しろよ的なことを促すスクリプト
This file contains 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
var MSG_HELLO = 'おはようございます(・∀・)\n勤怠管理システムからの打刻を忘れないようにしましょう!\n' + KINTAI_SYSTEM_URL; | |
var MSG_GOODBYE = 'おつかれさまでした(*´ω`*)\n勤怠管理システムからの打刻を忘れないようにしましょう!\n' + KINTAI_SYSTEM_URL; | |
function helloMessage() { | |
var client = ChatWorkClient.factory({token: TOKEN}); //チャットワークAPIトークン | |
client.sendMessage({ | |
room_id:ROOM_ID, //ルームID | |
body: MSG_HELLO | |
}); | |
} | |
function goodbyeMessage() { | |
var client = ChatWorkClient.factory({token: TOKEN}); //チャットワークAPIトークン | |
client.sendMessage({ | |
room_id:ROOM_ID, //ルームID | |
body: MSG_GOODBYE | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment