アルバムを表します。
GET /{album-id}
要件はアルバムが存在するノードの種類によって異なります。
要件 | ユーザーノード | ページノード | グループノード |
---|---|---|---|
すべて | すべて | ||
なし | タスクを実行できないページの公開ページコンテンツを取得するには、 | なし | |
非公開ページ:
公開ページ: | なし | ||
該当なし | 該当なし | 管理者 |
GET /v21.0/{album-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(
'/{album-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(
"/{album-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{album-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:@"/{album-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
名前 | 説明 | 型 |
---|---|---|
| アルバムID。 |
|
| ビューアーがこのアルバムに写真をアップロードできるかどうか。 |
|
| アルバムに入っている写真のおよその数。正確な数である必要はありません |
|
| アルバムのカバー写真のID。 | |
| アルバムが最初に作成された日時。 |
|
| アルバムの説明。 |
|
| このアルバムに関連するイベント。 | |
| 現在のユーザー(現在のユーザーが作成した場合)。 | |
| Facebookのこのアルバムへのリンク。 |
|
| アルバムのテキストロケーション。 |
|
| アルバムのタイトル。 |
|
| このアルバムに関連する場所。 | |
| アルバムのプライバシー設定。 |
|
| アルバムのタイプ。 |
|
| アルバムの最終更新時。 |
|
以下のエッジをリクエストする際は、パスパラメーターとしてリクエストするか、fields
クエリ文字列パラメーターを使用することができます。
このエンドポイントではこの操作を実行できません。
このエンドポイントではこの操作を実行できません。
このエンドポイントではこの操作を実行できません。