是否可以在iOS上使用FB.ui发送对话框?

时间:2012-02-20 23:16:55

标签: ios facebook

我正在尝试使用FB.ui实现发送对话框。可能吗? https://developers.facebook.com/docs/reference/dialogs/send/

3 个答案:

答案 0 :(得分:4)

FB.ui({ method: 'feed', 
    message: 'msg',
    name: 'name',
    link: 'your link',
    picture: 'your pic',
    caption: 'caption',
    description: 'desc',
    display: 'touch' // TAKE NOTE
});

答案 1 :(得分:0)

http://developers.facebook.com/docs/reference/dialogs/设置display mode =“touch”应该适用于iOS。

答案 2 :(得分:0)

试试此代码

FB.ui({ method: 'feed', 
    message: 'msg',
    name: 'name',
    link: 'your link',
    picture: 'your pic',
    caption: 'caption',
    description: 'desc',
    display: 'touch' // TAKE NOTE
});