function Pages()
{
FB.api(
'/me/accounts',
'GET',
{ fields: 'name,about' },
function(response) {
document.getElementById('showPages').innerHTML = response.name + ' ' + response.about ;
},{ scope: 'manage_pages' }
);
}
我使用此功能获取已登录到我的应用程序的用户管理的名称和页面。
我得到输出为"未定义"。
答案 0 :(得分:0)
它工作.. 必须删除GET ..
答案 1 :(得分:-1)
试试$(document).ready(function(){
$('.child_div').hide();
$(".btn").click(
function () {
$('.child_div').hide();
var the_div_id_to_show = $(this).attr("data-show");
$("#" + the_div_id_to_show).show("slow");
}
);
});
而不是FB.api('/me/applications/developer',
可能有用。