Facebook sdk - 分享到托管页面

时间:2013-09-10 01:15:55

标签: javascript jquery facebook facebook-graph-api facebook-javascript-sdk

我有以下代码分享到Facebook墙,但它没有提供共享到用户拥有管理员权限的任何托管页面的选项(我尝试使用我自己的帐户进行测试)任何人都可以帮我这个?另外,如果可能的话,我想根据Feed中设置的日期发布。

<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>

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

提前感谢!

1 个答案:

答案 0 :(得分: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
 });
  

我想在将来发布

如果您希望以后发布到自己的网页,可以使用网页访问令牌,页面访问令牌可以扩展为从不到期。 What are the Steps to getting a Long Lasting Token For Posting To a Facebook Fan Page from a Server


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

/me/accounts?fields=id,name

,您将获得一系列您正在管理的网页。 Live Demo