我可以使用javascript获取facebook用户组列表吗?
我尝试使用以下代码,但获得了空列表。
$('#getGroupsButton1').click(function () {
FB.api(
"/me/groups",
function (response) {
if (response && !response.error) {
/* handle the result */
var a = response.data;
}
});
});