3
Facebookのビジネスページからアルバムを取り込む私たちのバーのウェブサイトにFacebook Galleryを作成しています。ファンページに年齢制限を設定すると、アルバムを表示できなくなります。どのように私は年齢制限を維持し、まだ私たちのウェブサイト上のアルバムを見ることができます。ウェブサイトには、サイトを見る前に年齢を確認するためのコードが組み込まれています。年齢制限付きのページを表示
ゲーム下旬$FBid = '116312615074882'; // Will add a Admin item for this
//Get the contents of a Facebook page
$FBpage = file_get_contents('https://graph.facebook.com/'.$FBid.'/albums');
//Interpret data with JSON
$photoData = json_decode($FBpage);
foreach($photoData->data as $data) {
$images[] = array(
'id' => $data->id,
'name' => $data->name
);
}
$this->data->images = $images;
$this->template
->title('Facebook Gallery')
->build('index', $this->data);