In order to receive public messages on the page, you must use the appropriate connection, which is the feed connection with any valid access_token .
So, to get the public channels of the page you specify, you use /237173582992285/feed . In addition, you can select only the data you need, for example /237173582992285?fields=feed.fields(message,type,status_type) will lead to something like:
{ "id": "237173582992285", "feed": { "data": [ { "message": "???? ???? ???? :) - ??? <3", "type": "photo", "status_type": "added_photos", "id": "237173582992285_461226513920323", "created_time": "2012-11-03T12:46:20+0000" }, { "message": "?????? ????? ? ???? ???? ????? ?? ??????? ? ????? ???? ??????? ????? ???? ???????? ????????? :D :D :D - ??? <3", "type": "photo", "status_type": "added_photos", "id": "237173582992285_457876184255356", "created_time": "2012-10-26T09:43:01+0000" }, ....etc ], "paging": { "previous": "https://graph.facebook.com/237173582992285/feed?fields=message,type,status_type&limit=25&since=1351946780", "next": "https://graph.facebook.com/237173582992285/feed?fields=message,type,status_type&limit=25&until=1348763989" } } }
Read more about the endpoint of the page here .
source share