【发布时间】:2014-09-19 11:48:58
【问题描述】:
嗯,我有一个网站,我正在使用 Facebook 插件(带有您的关注者和帖子的典型框)...我如何在同一个框中显示 Facebook 评级?我没有找到选项:S
这可能吗?
谢谢你的帮助!对不起我的英语;)
编辑:
感谢您提供的 URL,我找到了一个示例,我正在对其进行编辑。我有以下代码:
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中的一个页面
【问题讨论】:
-
您需要为此创建一个应用程序并使用图形 API:developers.facebook.com/docs/graph-api/reference/v2.1/page/…
-
感谢href @luschn 但是...我从来没有使用过graph api。有人可以解释一下吗?我不理解 facebook 中的文档:S
标签: facebook wordpress plugins web