显示单个预定义相册中的内容

时间:2013-04-11 21:34:26

标签: facebook wordpress facebook-graph-api

我一直在玩FB SDK和一些用于显示FB相册的例子,但这些例子比我想做的要复杂得多。我想要做的就是设置一个专辑的专辑ID并拉入内容。就是这样,我可以在之后设置所有内容,我只需要能够查看一张专辑的内容并为每张照片添加标题。

我正在尝试创建一个执行此操作的WordPress专辑;我可以轻松地创建小部件的基础,但是当涉及到API时,我已经迷失了。

有没有我忽略过的例子?

有谁知道如何做到这一点?

1 个答案:

答案 0 :(得分:0)

希望这会给你一个提示;)

<?

if (empty($_GET['album'])) {

//get all albums of page
    $graph_url = "https://graph.facebook.com/PressPlayPrague/albums?       fields=id,link,name,cover_photo&limit=500";
    $albums = json_decode(file_get_contents($graph_url));
        $counted = sizeof ($albums->data); // get the number of albums for later use

//output all albums of given page
for($c=0; $c<$counted; $c++){
    echo ("<div class='wrapper' <a href='?album=".$albums->data[$c]->id."'><div class='stack'><div style='width:180px; height:120px; display:inline-block; background-image:url(https://graph.facebook.com/".$albums->data[$c]->id."/picture?width=300&height=200); background-repeat:no-repeat;'>  </div></div><div class='caption'>".$albums->data[$c]->name."</div></a></div>");
};

}else{

        //get the album pictures replace the $_GET[album] with specific ID and remove the if clause to get only one album
    $pic_url = "https://graph.facebook.com/".$_GET[album]."/photos?fields=picture&limit=500";
    $pictures = json_decode(file_get_contents($pic_url));
    $countpic= sizeof ($pictures->data); // get the number of pics for later use
for($p=0; $p<$countpic; $p++){
echo ("<img style='width:250px; max-height:167px;' src='https://graph.facebook.com/".$pictures->data[$p]->id."/picture' alt='".$pictures->data[$p]->id."'>");

    };

}

?>