2017-10-24 5 views
0

오픈 소스 파이썬 라이브러리 Requests을 사용하여 전보 봇으로 MP3 오디오 파일을 보내려면 어떻게해야합니까?전보 봇을 사용하여 파이썬으로 mp3 파일을 전송하는 방법

URL = 'api.telegram.org/bot'+TOKEN+'/sendAudio' 
af = open("temp.mp3", 'rb') 
params = {'chat_id' : 421087308, 'audio' : af} 
req = requests.post(URL, params) 
af.close() 
+0

현재 코드로 오류가 무엇입니까

나는 다음과 같은 코드를 작성? – jdoe

+0

[python telegram bot wrapper] (https://github.com/python-telegram-bot/python-telegram-bot)을 사용하면 다음과 같이 쉽게 할 수 있습니다 :'bot.send_audio (chat_id = chat_id, audio = open 'tests/test.mp3', 'rb'))' – jdoe

+0

위의 코드가 작동 했습니까? – jdoe

답변