好吧,我有一个网站,我正在使用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的页面
答案 0 :(得分:0)
以下是您必须做的事情:
manage_pages
权限/me/accounts
使用该令牌获取扩展页面访问令牌/{page-id}/ratings
使用该页面令牌获取评级一些链接,涵盖所有这些待办事项: