So I'm using the request dialog like so...
function sendRequestViaMultiFriendSelector() {
FB.ui({method: 'apprequests',
message: 'My Great Request',
});
}
And being triggered like...
<a href="javascript:;" onClick="sendRequestViaMultiFriendSelector()" >Request</a>
On the user side, when you click it, everything works great. It pops up, lets you pick friends to send to etc. But when the receiver logs in there's a notification for about 1 second then it disappears and nothing is there. Not sure what would cause this or why it's happening. Any ideas?
link to page Here