2012-04-19 136 views
0

获得评论我不会让一个页面的最好注解Facebook的评论:更喜欢

    • 更像
    • 更老

from: https://graph.facebook.com/comments/?ids=[YOUR PAGE]

我得到这样的结果:

{ “[您的个人主页]”:{

"comments": { 
    "data": [ 
     { 
      "id": "10150129443959608_15887865", 
      "from": { 
       "name": "Trent Seed", 
       "id": "614130500" 
      }, 
      "message": "that house is huge!!", 
      "created_time": "2011-04-13T10:00:44+0000" 
     }, 
     { 
      "id": "10150129443959608_15902791", 
      "from": { 
       "name": "Mitch Seed", 
       "id": "688036079" 
      }, 
      "message": "wtf this is ridiculous! I cant believe this is actually right by us.", 
      "created_time": "2011-04-14T02:17:18+0000", 
      "comments": { 
       "data": [ 
       { 
        "id": "10150155952624608", 
        "from": { 
         "name": "Ethan Ming", 
         "id": "592969356" 
        }, 
        "message": "where does all that flat land come from in los altos HILLS? oh i guess that $100 million also went to removing a small mountain too", 
        "created_time": "2011-04-14T02:43:57+0000" 
       }, 
       { 
        "id": "10150155954519608", 
        "from": { 
         "name": "Mitch Seed", 
         "id": "688036079" 
        }, 
        "message": "yeah haha thats just straight ridiculous i have ran all through los altos hills i dont remember any land like this haha", 
        "created_time": "2011-04-14T02:46:40+0000" 
       }, 
       { 
        "id": "10150155969784608", 
        "from": { 
         "name": "Leila Marie", 
         "id": "1044030343" 
        }, 
        "message": "jus copied you haha this is crazy", 
        "created_time": "2011-04-14T03:13:07+0000" 
       } 
       ], 
       "count": 3 
      } 
     }, 
     { 
      "id": "10150129443959608_15932966", 
      "from": { 
       "name": "Arthur Lozinski", 
       "id": "1044030063" 
      }, 
      "message": "digital sky technologies. remember that name :-D", 
      "created_time": "2011-04-15T15:42:23+0000" 
     }, 
     { 
      "id": "10150129443959608_15962947", 
      "from": { 
       "name": "Brian Sator", 
       "id": "513517991" 
      }, 
      "message": "I feel like I would get lost in that place.", 
      "created_time": "2011-04-17T08:03:24+0000", 
      "likes": 1 
     }, 
     { 
      "id": "10150129443959608_16282803", 
      "from": { 
       "name": "Jordan McDaniel", 
       "id": "506352386" 
      }, 
      "message": "holy shit", 
      "created_time": "2011-05-04T04:29:27+0000", 
      "comments": { 
       "data": [ 
       { 
        "id": "10150172606879608", 
        "from": { 
         "name": "Davey Nicholas", 
         "id": "1346961549" 
        }, 
        "message": "\"no plans to move into the mansion\" whos' tryina squat", 
        "created_time": "2011-05-04T04:35:16+0000" 
       } 
       ], 
       "count": 1 
      } 
     } 
    ], 
    "paging": { 
     "next": "[link]" 
    } 
    } 

} }

我不会让JSON文件的最好的消息(或有可能在其他的方式?)

回答

0

尝试FQL

SELECT标识,文本,喜欢FROM评论WHERE的object_id = [PAGE_ID]为了通过喜欢降序

与图

https://graph.facebook.com/fql=SELECT + ID,文本,+喜欢FROM +评论+ WHERE +的object_id = [PAGE_ID] +通过+顺序+喜欢+降序

see more about fql