Facebook connector for Bottender.
npm install bottender-facebookUsing the API version before v2.10 may cause unexpected behavior.
We highly recommend the API version after v2.11.
You need to make sure the webhook of your page is subscribing to the feed field on API version after v2.11.
- manage_pages - for access token
- publish_pages - for public replies
- read_page_mailboxes - for private replies
const { Bot } = require('bottender');
const { createServer } = require('bottender/express');
const { FacebookConnector } = require('bottender-facebook');
// 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);The default Graph API version is v2.11 (recommended).
You can use other version by following this example:
const { Bot } = require('bottender');
const { FacebookConnector, FacebookClient } = require('bottender-fb');
const bot = new Bot({
connector: new FacebookConnector({
appSecret: APP_SECRET,
client: FacebookClient.connect(ACCESS_TOKEN, '2.11'),
}),
});client.sendCommentclient.sendPrivateReply
context.sendCommentcontext.sendPrivateReply
event.isFeedevent.isStatusevent.isStatusAddevent.isStatusEditedevent.statusevent.isPostevent.isPostRemoveevent.postevent.isCommentevent.isCommentAddevent.isCommentEditedevent.isCommentRemoveevent.commentevent.isLikeevent.isLikeAddevent.isLikeRemoveevent.likeevent.isReactionevent.isReactionAddevent.isReactionEditevent.isReactionRemoveevent.reaction
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-facebook.gitInstall the dependencies:
cd bottender-facebook
yarnMake sure the tests pass (including eslint, flow checks and jest tests):
yarn testMake your changes and tests, and make sure the tests pass.
MIT © Yoctol