Skip to content

Instantly share code, notes, and snippets.

@matclayton
Created May 17, 2011 04:11
Show Gist options
  • Select an option

  • Save matclayton/975939 to your computer and use it in GitHub Desktop.

Select an option

Save matclayton/975939 to your computer and use it in GitHub Desktop.
Tracking FB social actions
<div id="fb-root"></div>
<script>
(function() {
window.fbAsyncInit = function() {
FB.Event.subscribe('edge.create', function(response) {
_gaq.push(['_trackSocial', 'facebook', 'like', response]);
});
FB.Event.subscribe('edge.remove', function(response) {
_gaq.push(['_trackSocial', 'facebook', 'unlike', response]);
});
};
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js#xfbml=1';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<script>
FB.ui({
method: 'apprequests',
message: 'You should visit Mixcloud.'
});
</script>
<div id="fb-root"></div>
<script>
(function() {
window.fbAsyncInit = function() {
FB.Event.subscribe('message.send', function(response) {
_gaq.push(['_trackSocial', 'facebook', 'send', response]);
});
};
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js#xfbml=1';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<script>
FB.ui({
method: 'feed',
message: 'Come checkout Laid back radio',
name: 'Laid Back',
caption: 'on Mixcloud',
description: ‘Laid back is an internet medium...’,
link: 'http://www.mixcloud.com/laidbackradio/’,
picture: 'http://mixcloud.com/lb.jpg',
actions: [
{ name: 'fbrell', link: 'http://fbrell.com/' }
]
},function(response) {
if (response && response.post_id) {
_gaq.push(['_trackSocial', 'facebook', 'share', response]);
}
});
</script>
@mitchf
Copy link
Copy Markdown

mitchf commented May 17, 2011

Better, more feature-rich custom code snippets to use in place of Facebook's one-line javascript integration examples.

@taitsmp
Copy link
Copy Markdown

taitsmp commented May 18, 2011

Async FB social buttons + Async Google analytics calls.

@arush
Copy link
Copy Markdown

arush commented Nov 9, 2012

FB API sex

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment