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?
