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,系統才會傳回數量。 |
|
| 群組名稱。 |
|
| 已在 9.0 版及更高版本停用。將從 2021 年 2 月 9 日起在所有版本中停用。 |
|
| 群組的母體(如有)。 |
|
| 用戶向安裝在群組的應用程式所授予的權限。 |
|
| 群組的私隱設定。可能的值為 |
|
| 群組的上次更新時間(包括群組屬性、帖子和回應的變更)。需要使用群組管理員的存取憑證。 |
|
我們並不支援這項操作。
不支援這項操作。
我們並不支援這項操作。