0

Facebookグラフから投稿メッセージを処理しようとしています。

https://graph.facebook.com/comments/?ids=http://www.myawesomedomain.com/post_nr38.html

結果は次のとおりです。

{
   "http://www.myawesomedomain.com/post_nr38.html": {
      "comments": {
         "data": [
            {
               "id": "123381557832360_139652",
               "from": {
                  "name": "Zbarcea Ioan-Christian",
                  "id": "100001004884254"
               },
               "message": "test 3",
               "can_remove": false,
               "created_time": "2013-08-30T14:44:51+0000",
               "like_count": 0,
               "user_likes": false
            },
            {
               "id": "123381557832360_139651",
               "from": {
                  "name": "Zbarcea Ioan-Christian",
                  "id": "100001004884254"
               },
               "message": "test 2",
               "can_remove": false,
               "created_time": "2013-08-30T14:28:16+0000",
               "like_count": 0,
               "user_likes": false
            },
            {
               "id": "123381557832360_139650",
               "from": {
                  "name": "Zbarcea Ioan-Christian",
                  "id": "100001004884254"
               },
               "message": "test 1",
               "can_remove": false,
               "created_time": "2013-08-30T14:28:12+0000",
               "like_count": 0,
               "user_likes": false
            }
         ],
         "paging": {
            "cursors": {
               "after": "MQ==",
               "before": "Mw=="
            }
         }
      }
   }
}

コード:

$html = file_get_contents('https://graph.facebook.com/comments/?ids=http://www.myawesomedomain.com/post_nr38.html');
$json_data = json_decode($html);

foreach ($json_data as $data)
{
   echo "Name: ".$data['name']."<br />Message: ".$data['message'];
}

しかし、それは空で、出力はありません。私はそれがループの何かであることを知っています。私はJSONを使ったことがありません。

4

1 に答える 1