2012-08-08 55 views

回答

2

你需要獲得一個OAuth令牌,並從OpenGraph

的JSON提要對於OAuth令牌:

https://graph.facebook.com/oauth/access_token?client_id=<client_id here>&client_secret=<client_secret here>&grant_type=client_credentials 

和飼料:

https://graph.facebook.com/<facebook_page_id>/feed/?access_token=<oauth_token> 

你得到的JSON數組返回,並可以使用您最喜歡的JSON解析器解析它。 此外,您可以使用此工具探索開圖:

https://developers.facebook.com/tools/explorer/ 

希望有所幫助。快樂的iCoding。