I am trying to write a simple kik bot to send videos from youtube. Started with https://github.com/kikinteractive/kik-bot-python-example
Modified it this way:
messages_to_send.append( VideoMessage( to=message.from_user, chat_id=message.chat_id, video_url="https://www.youtube.com/watch?v=WHATEVER" ))
But when try, i get an error like:
kik.error.KikError: {"message":"Error sending video message: text/html; charset=utf-8 is not a supported Content-Type","error":"BadRequest"}
Dont know from where is taking "text/html; charset=utf-8" because i ve defined is a VideoMessage(
Sorry if it is a silly question, i am noob with kik and python
Thanks in advance