telegram bot 썸네일형 리스트형 텔레그렘(Telegram)으로 간단한 서버 모니터링 하기. 일단 Telegram-cli을 설치 안하신 분들은 앞 글을 참조하는게 좋을 것 이다. 참고로 Ubuntu 기준이다. http://slg1119.tistory.com/33 Telegram-cli가 설치되있다는 가정 하에 시작하겠다. 1.hello.lua 뜯어보기 Telegram-cli는 기본적으로 lua란 언어를 사용한다. 일단 예제 코드인 hello.lua 코드를 보자.function on_msg_receive (msg) if ( msg.text == 'hello' ) then send_msg(msg.from.print_name, "world", ok_cb, false) #hello란 명령어를 받으면 world를 보내라는 커맨드 return end end function ok_cb(extra, succe.. 더보기 이전 1 다음