What can I use to implement Telegram messages in my website?

api, javascript, message, php, telegram

Solution

Check this link: https://github.com/zhukov/webogram this is a chrome app using javascript.

API can found here: https://core.telegram.org/api

Other applications using the api can found here: https://telegram.org/apps

use the source luke :)

I would not do it in javascript because you have to give alle the authentication infos to the client.

Problem

After searching all over the web, I am forced to ask: What can I use to send messages using the Telegram API? JavaScript or PHP preferably. I have a group of friends that I wish I could tell through certain events on the website. Here's an interesting link: http://reyero.net/es/node/263 Update - REST API for Telegram: https://jaconda.im/ - Simple JS library for Telegram API: https://github.com/sunriselink/TelegramApi - Telegram API: https://core.telegram.org/api

Original source