Skip to content

Instantly share code, notes, and snippets.

@jamilsonjunior
Created December 20, 2017 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamilsonjunior/5f1f0990d08f3b0c0939d0c658b7c247 to your computer and use it in GitHub Desktop.
Save jamilsonjunior/5f1f0990d08f3b0c0939d0c658b7c247 to your computer and use it in GitHub Desktop.
Facebook Messenger Chat Extension
<script>
window.fbMessengerPlugins = window.fbMessengerPlugins || {
init: function () {
FB.init({
appId : 'xxxxxxxxxxx',
autoLogAppEvents : true,
xfbml : true,
version : 'v2.10'
});
}, callable: []
};
window.fbAsyncInit = window.fbAsyncInit || function () {
window.fbMessengerPlugins.callable.forEach(function (item) { item(); });
window.fbMessengerPlugins.init();
};
setTimeout(function () {
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) { return; }
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk/xfbml.customerchat.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
}, 0);
</script>
<div
class="fb-customerchat"
page_id="xxxxxxxxxxxxxx"
ref="">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment