본문 바로가기
알고 있으면 유용한 것들

C# 텔레그램봇 에러 발생할때 해결방법 (구버전)

by 긍정왕수전노 2023. 3. 11.
반응형

그동안 Telegram.Bot 14.0 버전을 사용하다가 한동안 텔레그램봇을 구동하지 않았습니다.

 

그런데 오늘 실행해보니 아래와 같은 에러가 발생했구요.

System.ArgumentException: 'Invalid format. A valid token looks like "1234567:4TT8bAc8GHUspu3ERYn-KGcvsvGB9u_n4ddy".
매개 변수 이름: token'

 

해결책은 일단 텔레그램봇을 최신 버전 18.0.0을 Nuget으로 업그레이드하면 해결될걸로 보입니다.

nuget 패키지 관리자

 

그런데...

텔레그램봇 API 자체가 바뀌어서 코드를 좀 변경해 줘야 하네요...ㅎㅎ

https://telegrambots.github.io/book/1/example-bot.html

 

Example - First Chat Bot - A guide to Telegram.Bot library

On the previous page we got an access token and used the getMe method to check our setup. Now, it is time to make an interactive bot that gets users' messages and replies to them like in this screenshot: Copy the following code to Program.cs. ⚠️ Replac

telegrambots.github.io

 

반응형