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'm using the facebook request dialog from http://developers.facebook.com/docs/reference/dialogs/requests/ and its working fine.

Now it displays a popup dialog window with the friends of my facebook account.

Now i tried to display the dialog inside my application page itself and i tried to change the display property to 'page' and also 'iframe' and it doesn't seems to be working..

I'm sure that i've initiated the fb using fb:init and it was working fine when i remove the 'display' property. How can i do that?

Here's my code..

function newInvite(){
   var receiverUserIds = FB.ui({ 
   method : 'apprequests',
   display: 'page',
   //filters: ['app_non_users'],                                  
   message: 'Come on man checkout my new application',
   },
   function(receiverUserIds) {
            //my own callback fun
   }
   );                 
}

I've a button for invoking this request and i'm calling this function using jquery as

$('#invite_frd').click(function(){      
        newInvite();
    });
share|improve this question

2 Answers

up vote 0 down vote accepted

"display" must be one of "popup", "dialog", "iframe", "touch", "async", "hidden", or "none".

I have tried the iframe , it shows a popup, but something is wrong, because it contains an error message.

share|improve this answer

just find the below part in url

display=wap

and change it to

display=touch 
share|improve this answer

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.