Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bottender-fb

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bottender-fb

Facebook connector for Bottender.

  • 0.3.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
3
Weekly downloads
 
Created
Source

Bottender FB

npm Build Status License: MIT

Facebook connector for Bottender.

Installation

npm install bottender-fb

Requirement

User Permissions Required

  • manage_pages - for access token
  • publish_pages - for public replies
  • read_page_mailboxes - for private replies

Example

const { Bot } = require('bottender');
const { createServer } = require('bottender/express');
const { FacebookConnector } = require('bottender-fb');

// We can get `story_fbid` in URL query string
const POST_ID =
  process.env.POST_ID || `${process.env.PAGE_ID}_${process.env.STORY_FBID}`;

const bot = new Bot({
  connector: new FacebookConnector({
    accessToken: process.env.ACCESS_TOKEN,
    appSecret: process.env.APP_SECRET,
  }),
});

bot.onEvent(async context => {
  if (context.event.isCommentAdd && context.event.comment.post_id === POST_ID) {
    await context.sendPrivateReply('OK!');
    await context.sendComment('Public comment!');
  }
});

const server = createServer(bot);

API Reference

Client

  • client.sendComment
  • client.sendPrivateReply

Context

  • context.sendComment
  • context.sendPrivateReply

Event

  • event.isFeed
  • event.isStatus
  • event.isStatusAdd
  • event.isStatusEdited
  • event.status
  • event.isPost
  • event.isPostRemove
  • event.post
  • event.isComment
  • event.isCommentAdd
  • event.isCommentEdited
  • event.isCommentRemove
  • event.comment
  • event.isLike
  • event.isLikeAdd
  • event.isLikeRemove
  • event.like
  • event.isReaction
  • event.isReactionAdd
  • event.isReactionEdit
  • event.isReactionRemove
  • event.reaction

Contributing

Pull Requests and issue reports are welcome. You can follow steps below to submit your pull requests:

Fork, then clone the repo:

git clone git@github.com:your-username/bottender-fb.git

Install the dependencies:

cd bottender-fb
yarn

Make sure the tests pass (including eslint, flow checks and jest tests):

yarn test

Make your changes and tests, and make sure the tests pass.

License

MIT © Yoctol

Keywords

FAQs

Package last updated on 05 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc