Telegram BOT 을 사용할때 그냥 간단하게 명령어 한줄로 사용 할 수는 없을까? 하는 사람들을 위해 포스팅 한다. Telegram BOT 은 많은 API 들을 제공해주는데 그중 sendMessage API 는 가장 사용 하기 쉽다. 예제를 보자. curl -k -d "chat_id=123456789" --data-urlencode "text=\"Test Message 보냅니다\"" https://api.telegram.org/bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11/sendMessage 빨간색 글씨는 각각 chat_id 와 Token Key 이다. 주희 할 점은 --data-urlencode "text= 이 코드 다음인데 띄어쓰기 또는 한글이 포함되어 있다면..