Some comments:

(1) I think "https://telegram.me"; is only for an interactive start of a
conversation. Try to input in your browser "
https://telegram.me/test_bot?text=test";
(2) Your code would send "https://telegram.me/@test_bot/*%s*?text=test";,
but this is no correct input for requests.post.
(3) I did not understand: what is the purpose of sending a message to a bot
programmatically? You can control the bot using its API. Could your please
tell me and send an example?

Regards, Martin

2016-08-17 0:14 GMT+02:00 黄祥 <steve.van.chris...@gmail.com>:

> is it possible to send message to telegram bot from web2py? i've tried but
> no luck
> *error*
> 400 Bad Request
> ------------------------------
> nginx/1.6.2
> *code*
> import requests
>
> def sendtelegram():
>     BOT = "@test_bot"
>     text = "test"
>
>     url = "https://telegram.me/%s/%%s"; % BOT
>     data = dict(text = text)
>
>     return requests.post(url, data = data)
>
> thanks and best regards,
> stifan
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to