React wrapper for the Facebook Messenger Checkbox Plugin
npm install react-messenger-checkbox-pluginComponent wrapper for Facebook Messenger checkbox plugin
``shell`
npm install --save react-messenger-checkbox-plugin
To use the Messenger Plugin, you will need an App Id and a Page Id. You can find create an app here and you will find your page Id at the bottom of your Facebook page settings.
You can then use the plugin.
`jsx
var React = require("react");
var render = require("react-dom").render;
var MessengerPlugin = require("react-messenger-plugin");
render(
appId="
pageId="
prechecked="
allow_login="
onRef={ref => (
/>,
document.body
);
`
You can send payload to your server using
`js
this.);``$3
Expect a delay before the checkbox appears. This is mainly caused by the time required by the Facebook SDK to load and then the time for it to initialize. To reduce the delay, see the advance usage described below.
Inspired by react-messenger-plugin