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 am developing a mobile app with facebook integration. The app is developed with jquery mobile(see below)

<link rel="stylesheet" <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>

I've managed so far to integrate Facebook functionality with Facebook JSSDK and in normal browser all works, as it should(login, logout, other api calls), but when i try to send an apprequest with:

function sendRequest() {
    FB.ui({ method: 'apprequests', message: 'Are you ready?',
    }, function(response) {
    console.log('sendRequest response: ', response);
    if (response && response.to) {
      for (var j = 0; j < response.to.length; j++) {
    alert('You have: ' + response.response.name + ' with User id: ' + response.to[j] + ' invited');
        //alert(response.to[j]);
      }
    } else {
            console.log('User didn't invite anyone');       
        }
});

on a mobile the request dialog doesn't pop up. I see only a blank white screen. Does anyone have an idea what am i doing wrong?

share|improve this question
it was an css error :) – Yanko Stoychev Apr 12 '12 at 7:18
So what is the answer? I'm having similar issue. – Paul Jul 20 '12 at 4:31
i am having similar issue too... – Eddy Chan Sep 1 '12 at 13:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.