2

我有以下代码可以共享到 facebook 墙上,但它没有提供共享到用户拥有管理员权限的任何托管页面的选项(我尝试使用自己的帐户进行测试)有人可以帮我解决这个问题吗?如果可能的话,我还想根据提要中设置的日期在未来发布。

<script>
window.fbAsyncInit = function() {
  FB.init({appId: '475259649152397',
    channelUrl : '<?php get_theme_root();?>/inc/facebook-javascript-sdk/channel.php',
    status: true, 
    cookie: true,
    xfbml: true
  });
};

function Login()    
{
   FB.login(function(response) 
   {
       if (response.authResponse) 
       {
            getUserInfo();
       } 
       else 
       {
         console.log('User cancelled login or did not fully authorize.');
       }
   },{scope: 'manage_pages'});
}

(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>

<script type="text/javascript">
jQuery(document).ready(function(){
   jQuery('#share_button').click(function(e){
     e.preventDefault();

     FB.ui({
       method: 'feed',
       name: 'This is the content of the "name" field.',
       link: ' http://example.com/',
       picture: 'http://myface.gif',
       caption: 'insightful thought provoking caption.',
       description: 'interresting".',
       message: ''
     });
   });
});
</script>

它可以很好地共享到用户墙,但没有共享到托管页面的选项

提前致谢!

4

1 回答 1

1

共享到用户拥有管理员权限的任何托管页面的选项

简单地说,给PAGE_ID参数to。就像-

FB.ui({
   method: 'feed',
   name: 'This is the content of the "name" field.',
   link: ' http://example.com/',
   picture: 'http://myface.gif',
   caption: 'insightful thought provoking caption.',
   description: 'interresting".',
   message: '',
   to: MY_PAGE_ID
 });

我想在未来发帖

如果您想在以后的任何时间发布到您的页面,您可以使用页面访问令牌,页面访问令牌可以扩展为永不过期。从服务器发布到 Facebook 粉丝页面的持久令牌的步骤是什么


要获取您管理的页面,请查询 -

/me/accounts?fields=id,name

,您将获得一系列正在管理的页面。现场演示

于 2013-09-10T09:40:26.373 回答