如何在我的网站上展示Facebook评级明星?

时间:2014-09-19 11:48:58

标签: facebook wordpress plugins web

好吧,我有一个网站,我正在使用Facebook插件(与你的粉丝和帖子的典型框)...我如何在同一个框中显示Facebook评级?我没有找到选项:S

这可能吗?

谢谢你的帮助!抱歉我的英语;)

编辑:

感谢网址,我找到了一个例子,我正在编辑它。我有以下代码:

function testAPI() {
console.log('Welcome!  Fetching your information.... ');
FB.api('/1447162575539510/ratings', function(response) {
    if (response && response.error){
        console.log("ERROR: "+response.error.message);
    }else{
        console.log("RESPONSE: "+response.open_graph_story);
    //console.log('Successful login for: ' + response.rating);
    document.getElementById('status').innerHTML ='Thanks for logging in, ' + response.name + '!';
    }
});
//FB.api("/410442505719113/ratings",function(response){
           //if (response && !response.error){
            //console.log(response.name);
           //}else{
            //console.log("ERROR : "+response.error.message);
           //}
        //});
  }

但总是给我同样的错误:错误:(#210)主题必须是一个页面。而且我不知道为什么,个人资料是facebook的页面

1 个答案:

答案 0 :(得分:0)

以下是您必须做的事情:

  • 创建Facebook应用
  • 使用manage_pages权限
  • 授权页面管理员
  • 扩展用户访问令牌(从2小时到60天)
  • 用户/me/accounts使用该令牌获取扩展页面访问令牌
  • 用户/{page-id}/ratings使用该页面令牌获取评级

一些链接,涵盖所有这些待办事项: