I use FB.ui to start the query dialog. The dialog loads correctly on non-mobile devices. However, it does not load on mobile devices such as the iPad. Something like a popup / iframe with loading-gif .
FB.ui({ method: 'apprequests', message: 'Hello People', title: 'A friendly hello', data: 'some-data', display: 'touch', access_token: my_access_token, }, callback);
I tried with display: 'iframe' , display:'popup' , display: 'wap' and display: 'page' . But nothing works. How can I make it work on mobile devices? Thanks.
dheerosaur
source share