@sociably/messenger
TypeScript icon, indicating that this package has built-in type declarations

0.7.2 • Public • Published

Messenger Platform

Receive events and send messages through Messenger platform.

Install

npm install @sociably/core @sociably/http @sociably/messenger
# or with yarn
yarn add @sociably/core @sociably/http @sociably/messenger

Docs

Check the platform document and the package reference.

Setup

import Sociably from '@sociably/core';
import Http from '@sociably/http';
import Messenger from '@sociably/messenger';

const {
  MESSENGER_PAGE_ID,
  MESSENGER_APP_ID,
  MESSENGER_ACCESS_TOKEN,
  MESSENGER_APP_SECRET,
  MESSENGER_VERIFY_TOKEN,
} = process.env;

const app = Sociably.createApp({
  modules: [
    Http.initModule({ /* ... */ }),
  ],
  platforms: [
    Messenger.intiModule({
      entryPath: '/webhook/messenger',
      pageId: MESSENGER_PAGE_ID,
      appSecret: MESSENGER_APP_SECRET,
      accessToken: MESSENGER_ACCESS_TOKEN,
      verifyToken: MESSENGER_VERIFY_TOKEN,
    }),
  ],
});

Readme

Keywords

none

Package Sidebar

Install

npm i @sociably/messenger

Weekly Downloads

2

Version

0.7.2

License

MIT

Unpacked Size

256 kB

Total Files

121

Last publish

Collaborators

  • lrills