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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to