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
— ユーザーの代わりにアプリがグループにコンテンツを投稿できるようにします。公開グループおよび非公開グループの場合
ユーザーアクセストークン
秘密のグループの場合
グループの管理者のためのユーザーアクセストークン
警告
プロパティ名 | 説明 | 型 |
---|---|---|
| グループID |
|
| グループのカバー写真に関する情報。 |
|
| グループの簡単な説明。 |
|
| グループにコンテンツをアップロードするためのメールアドレス。現在のグループのメンバーのみ利用できます。 |
|
| グループのアイコンのURL。 |
|
| グループ内のメンバー数。 |
|
| 保留中のメンバーリクエスト数。グループの管理者のアクセストークンが必要です。この数は、保留中のメンバーリクエスト数が50を超える場合にのみ返されます。 |
|
| グループの名前。 |
|
| v9.0以上では廃止済みです。2021年2月9日にすべてのバージョンで廃止される予定です。 |
|
| このグループの親 (存在する場合)。 |
|
| グループにインストールされたアプリに対してユーザーが付与したアクセス許可。 |
|
| グループのプライバシー設定。指定できる値は、 |
|
| グループの最終更新日時 (グループのプロパティの変更、投稿、コメントを含む)。グループの管理者のアクセストークンが必要です。 |
|
この操作はサポートされていません。
この操作はサポートされていません。
この操作はサポートされていません。