您好我正在为我的网站制作一个Facebook相册GUI。 现在我已经知道我有我的专辑列表的方式,可以选择一个并显示它的照片。 但现在我遇到的问题是我无法导入专辑的标题。 我使用的脚本:
<?php
//Get Albumdata
$naamDataRuw = file_get_contents('https://graph.facebook.com/'.$_GET['album_id']);
//Decode data
$naamData = json_decode($naamDataRuw);
//Useable data
foreach ($naamData->data as $data)
{
//Show description or album name as title DOES NOT WORK
echo '<h2>'.$data->description.'</h2>';
}
?>
关于如何处理这个的任何想法?
提前致谢!