Reputation: 3574
Hi please tell me the way to read facebook wall messages(public) in android. I know we can establish http connection to the graph url of facebook and get json string from that.After parsing json we can get the wall messages.
But my problem is, what is the graph url?
please help me
Upvotes: 1
Views: 1225
Reputation: 1500
https://graph.facebook.com/ID/feed?access_token=token
Where ID is the id of the page in question and of course token is the users access token
Upvotes: 1