1.0.2 • Published 9 months ago

telegram-bot-activitystreams v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Telegram Bot Messages to ActivityStreams 2.0

ActivityStreams 2.0

ActivityAvailable
summary
instrument
actor
origin
target
origin
startTime
endTime
ObjectsAvailable
Person
Profile
Note
Audio
Video
Document
Event
Place

Example

Example use node-telegram-bot-api

const activitystreams = require('telegram-bot-activitystreams');
const TelegramBot = require('node-telegram-bot-api');

const token = 'YOUR_TELEGRAM_BOT_TOKEN';
const bot = new TelegramBot(token, {polling: true});

bot.on('message', (msg) => {
  const activity = activitystreams(msg);
  bot.sendMessage(msg.chat.id, 'Hello ' + activity.actor.name);
});