Facebook 小组。
返回有关单个小组对象的信息。若要获取小组和用户管理员列表,应使用 /user/groups
连线。
GET /v21.0/{group-id} HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{group-id}',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
FB.api(
"/{group-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{group-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
groups_access_member_info
— 让应用能够接收与成员有关的小组内容数据。publish_to_groups
— 让应用能够代表用户将内容发布到小组。对于公开和封闭小组
用户访问口令
对于私密小组
小组管理员的用户访问口令
注意事项
属性名称 | 描述 | 类型 |
---|---|---|
| 小组编号 |
|
| 有关小组封面照片的信息。 |
|
| 对小组的简要描述。 |
|
| 用于将内容上传到小组的邮箱。只有小组当前成员才能使用此功能。 |
|
| 小组图标的网址。 |
|
| 小组成员数量。 |
|
| 待处理的成员请求数量。需要小组管理员的访问口令。只有当待处理的成员请求数量超过 50 时,才会返回此数量。 |
|
| 小组名称。 |
|
| 在 v9.0 及更高版本中停用。自 2021 年 2 月 9 日起在所有版本中停用。 |
|
| 小组的父级对象(如有)。 |
|
| 用户为小组内安装的某应用授予的权限。 |
|
| 小组的隐私设置。可能的值包括 |
|
| 小组的上次更新时间(包括更改小组属性、帖子和评论)。需要小组管理员的访问口令。 |
|
不支持此操作。
不支持此操作。
不支持此操作。