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 would like to implement my own version of the facebook apprequest dialog, how can i use the FB.ui({method: 'apprequests', display:'iframe',message:'xxxxx'}, function(r){}); so it doesnt display on the page and I can use the friendlists so I dont have to implement my own list

Thanks Graeme

share|improve this question

1 Answer

up vote 3 down vote accepted

In short: you can't! (this is due to cross-domain policy, since Requests Dialog will be displayed in iframe and it's content not really will be accessible)

But you can imitate something that will look alike with jQuery Facebook Multi-Friend Selector or implement it in other ways by requesting user's friends details via Graph API call to https://graph.facebook.com/me/friends?access_token=...

share|improve this answer
thanks for the suggestion, looks like it will do the job nicely! – Graeme G Jan 18 '12 at 16:05

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.