Reputation: 41480
I am trying to implement send dialog using FB.ui. Is it possible? https://developers.facebook.com/docs/reference/dialogs/send/
Upvotes: 1
Views: 4236
Reputation: 51
Try this code
FB.ui({ method: 'feed',
message: 'msg',
name: 'name',
link: 'your link',
picture: 'your pic',
caption: 'caption',
description: 'desc',
display: 'touch' // TAKE NOTE
});
Upvotes: 0
Reputation: 51
FB.ui({ method: 'feed',
message: 'msg',
name: 'name',
link: 'your link',
picture: 'your pic',
caption: 'caption',
description: 'desc',
display: 'touch' // TAKE NOTE
});
Upvotes: 4
Reputation: 31870
Per http://developers.facebook.com/docs/reference/dialogs/ setting the display mode = "touch" should work on iOS.
Upvotes: 0