Album (アルバム)
アルバムの作成
POST https://graph.facebook.com/USER_ID/albums
/USER_ID/albums
に対して、nameパラメータでアルバム名を指定してPOSTします。このように作成したアルバムの種類 (type) は、"normal"となります。
指定可能なパラメータ
値 |
説明 |
name |
|
message |
|
アルバムの取得
レスポンス
名前 |
説明 |
id |
アルバムID |
from |
The profile that created this album |
name |
アルバムのタイトル |
description |
The description of the album |
location |
The location of the album |
link |
A link to this album on Facebook |
cover_photo |
The album cover photo ID |
privacy |
The privacy settings for the album |
count |
The number of photos in this album |
type |
アルバムの種類
profile … プロフィールの写真
mobile …
wall … ウォールに投稿された写真
normal …
album …
|
created_time |
The time the photo album was initially created |
updated_time |
The last time the photo album was updated |
can_upload |
Determines whether the UID can upload to the album and returns true if the user owns the album, the album is not full, and the app can add photos to the album |
サンプルコード
$albums = $facebook->api( '/me/albums', 'GET' );
foreach( $albums[ 'data' ] as $data )
{
if( $data[ 'type' ] == 'wall' )
{
$wallAlbumId = $data[ 'id' ];
break;
}
}