1

我正在使用 Facebook 的“发布到您的墙上”弹出窗口在用户墙上发布消息。它显示了一个文本区域,用户可以在其中编写消息。我想在该文本区域中放置自定义文本;现在它有一个水印,上面写着“写一些东西......”。我需要更换那个。

我正在使用与https://developers.facebook.com/docs/channels/相同的代码:

FB.init({ 
        appId:'YOUR_APP_ID', cookie:true, 
        status:true, xfbml:true 
     });

     FB.ui({ method: 'feed', 
        message: 'Facebook for Websites is super-cool'});
4

2 回答 2

0
FB.ui(
  {
    method: 'feed',
    name: 'Facebook Dialogs',
    link: 'https://developers.facebook.com/docs/reference/dialogs/',
    message: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
  }); 

添加链接

于 2012-08-24T09:14:48.220 回答
0

根据本次 facebook 平台更新,自 7 月 12 日起不再支持message字段。

于 2012-10-12T12:04:44.843 回答