@a-soul/sender-telegram 中文文档教程

发布于 3年前 浏览 17 项目主页 更新于 3年前

@a-soul/sender-telegram

将处理后的数据发送到 Telegram

Features

  • Simple, fast, ESM by default
  • Minimal dependencies, HTTPS requests by got

Usage

import send from '@a-soul/sender-telegram';

const options = {
  payload: `json`, // `json` or `form`
  token: '1234567890:ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789',
  method: `sendMessage`,
};

const resp = await send(options, {
  chat_id: `1234567`,
  text: `Test from @a-soul/sender-telegram`
});

JSON.parse(resp.body).ok
//=> true

License

AGPL-3.0

@a-soul/sender-telegram

Send processed data to Telegram

Features

  • Simple, fast, ESM by default
  • Minimal dependencies, HTTPS requests by got

Usage

import send from '@a-soul/sender-telegram';

const options = {
  payload: `json`, // `json` or `form`
  token: '1234567890:ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789',
  method: `sendMessage`,
};

const resp = await send(options, {
  chat_id: `1234567`,
  text: `Test from @a-soul/sender-telegram`
});

JSON.parse(resp.body).ok
//=> true

License

AGPL-3.0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文