Failed to complete the Facebook Requests dialog

Here is my source code:

FB.ui({method: 'apprequests', to: fbId, message: "hello"}, function(resp){
   if(resp.request_ids){
      $('#req-id').val(resp.request_ids);
        $('form').submit();
   } else {
       return false;
   }
});

And this is what I get when I launch it in a browser with User Agent installed on iPhone:

An error occurred. Please try again later.

It also pops up a window to display a message that is not required. I tried adding the "display: touch" parameter without any luck.

Has anyone come across this before?

Thanks Green

+5
source share
3 answers

The Facebook Queries dialog box is not currently available on your mobile phone. We are working on a mobile version. Please follow our blog to stay up to date when it starts.

+3
source

install useragent as a desktop browser and make facebook happy

0
source

All Articles