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.

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

share|improve this question

1 Answer

I've seen this behaviour in the past. It has to do with the requirement of needing a valid canvas app url programmed into your app settings. Without it, you will get the 1 second then disappear behaviour.

https://developers.facebook.com/docs/requests/

User to User Requests are only available for Canvas apps, not websites, as accepting a request will direct the user to the Canvas Page URL of the app that sent the Request.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:46

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.