从 facebook graph api 获取用户组
我在访问用户组时遇到 facebook graph api 的问题。
如果我直接用这个访问: https://graph.facebook.com/fb_id/groups?access_token=token
我可以访问和检索组。
但是,使用php sdk,它返回null。我可以知道出了什么问题吗?
$info = $facebook->api('https://graph.facebook.com/'.$memberfb.'/groups?access_token='.$membertoken);
$ct = count($info[data]);
$ct return 0。
我可以知道这里出了什么问题吗?
I have a problem with facebook graph api in accessing user's group.
If i access directly with this:
https://graph.facebook.com/fb_id/groups?access_token=token
I can access and retrieve group.
However, using php sdk, it returns null. May I know what went wrong?
$info = $facebook->api('https://graph.facebook.com/'.$memberfb.'/groups?access_token='.$membertoken);
$ct = count($info[data]);
$ct return 0.
May I know what went wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保您获得了
user_groups
权限,然后使用:Make sure you acquired the
user_groups
permission and then use:我也在使用 Facebook API。而且你的代码是错误的,正确的方法是:
I'm using the Facebook API, too. And your code is wrong, the right way is:
所需的 facebook 权限是 user_groups
在 codeplex 上使用 FacebookSdk 获取用户组的 C# 代码如下
The facebook permission required is user_groups
The C# code for getting the groups of a user using FacebookSdk on codeplex is as follows