我正在使用下面的代码,
<?php
$url = "http://graph.facebook.com/album-id/albums?fields=id,name&limit=500";
$obj = json_decode(file_get_contents($url));
foreach($obj->data as $item) {
echo "<p>". $item->id . "</p>";
}
?>
但我最多只能检索50张专辑。请有人帮我解决这个问题吗?我在这个论坛上搜索过,但我找不到更好的解决方案。