Telegram Bot
-
How to use Winston to log node application with telegram.Backend/NodeJS 2019. 12. 19. 18:47
I use winston-telegram How get telegram bot token & chatId : LINK Example: const wstlogger = require("winston"); const TelegramLogger = require("winston-telegram"); wstlogger.add(new TelegramLogger( { token: process.env.TELBOT_TOKEN, chatId: process.env.TELBOT_CHATID, level: "warn", unique: true, formatMessage: function (options: any) { let message = options.message; if (options.level === "warn"..
-
텔레그램 봇 token 값과 chatId 얻는 방법Programing/etc 2019. 12. 19. 17:59
봇 생성 & 토큰값 얻기 토큰 값을 아래 URL에 추가하여 웹 브라우저로 접속한다. https://api.telegram.org/bot[토큰값입력]/getUpdates 다음과 같은 화면이 나타날 것이다. 이제 텔레그램에서 봇에 말을 걸어보자. (아무말) 아래와 같은 리턴값을 받게된다. id 부분에 보면 아이디값을 확인 할 수 있다. 이제 Token 값과 ChatId 값을 모두 얻었으니 필요한 API에 적용시켜 사용하면 된다.
-
[python] Make Korail reservation Macro with telegram botPrograming/python 2019. 11. 12. 21:37
기차를 자주타서 예매를 하다 보면 I often take train, so I always reserve ticket on my phone. 원하는 여정이 매진일 때가 종종 있다. But the journey I want is usually sold out. 그럴때면 새로고침을 하면서 계속 예매 시도를 한다. When that happen, I'll refresh and keep trying to book. 이렇게 해서 실패한적은 없지만 시간과 노동이 소모되어 불편하다. This has never failed, but time and labor are inconvenient. 텔레그램 봇을 이용해서 기차표 예약을 하는 매크로를 만들 수 있다는 글을 보게 되었다. I found out that I can ..