Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an "invite friends" mechanism with Facebook's FB.ui({method: 'apprequests', message: 'Come join me...'}) popup dialog. I want to know the stats of users actually completing the invitation process. Normally I subscribe to Facebook events through this process:

  FB.Event.subscribe('edge.create', function(targetUrl) {
      _gaq.push(['_trackSocial', 'facebook', 'like', targetUrl]);
  });

There I'm subscribing to the event for when users like something and sending that to Google Analytics according to Facebook's subscribe documentation.

I'd love to use this same mechanism for apprequests, but there's no Facebook event for that on the above documentation webpage. Is there another way? Is there an event I'm unaware of?

share|improve this question

1 Answer

up vote 1 down vote accepted

Unlike with Like buttons, you can actually just use a direct callback.

FB.ui({method: 'apprequests', message: 'Come join me...'}, function(data){
  if(data){
    var sent = data.request_ids.split(",").length;
   _gaq.push(["_trackEvent", "Facebook App Request", "Request Sent, sent+" Sent", sent]);
 }
 else{ 
    //cancelled the dialog
 }
});

It returns an object that contains an array, request_ids; each item in the array contains the Facebook ID of the person they invited. (For privacy reasons, you should not send the actual IDs to Google Analytics, but counting them can be useful.)

(For a user that sends 5 app invites, it'll set the label to "5 Sent", and the value to 5. That way, you'll have both the total number of invites sent, as well as the ability to discern the distribution of invite counts sent.)

share|improve this answer
Perfect! Thanks. – at. Sep 2 '11 at 15:29
data will actually be null if the user cancels the dialog. Also, I think data.request_ids is not an array, but a comma-separated string of request ids. – at. Sep 4 '11 at 11:25
Really? Damn. Edited to take into account. – yahelc Sep 4 '11 at 13:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.