Skip to content

Instantly share code, notes, and snippets.

@leenattress
Last active December 20, 2015 09:59
Show Gist options
  • Save leenattress/6112646 to your computer and use it in GitHub Desktop.
Save leenattress/6112646 to your computer and use it in GitHub Desktop.
Facebook edge event
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'YOUR_APP_ID_HERE', // App ID from the app dashboard
channelUrl : 'http://www.YOUR_DOMAIN_THINGY.com/channel.html', // Channel file for x-domain comms
status : true, // Check Facebook Login status
xfbml : true // Look for social plugins on the page
});
// Additional initialization code such as adding Event Listeners goes here
FB.Event.subscribe('edge.create',
function(response) {
//DO YOUR COUPON SHOW HERE
}
);
};
// Load the SDK asynchronously
(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 = "http://connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment