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
source
share