I am trying to get Facebook profile feed (wall) information using Graph API through https://graph.facebook.com/FACEBOOK_USER_ID/feed?access_token=MY_FACEBOOK_APP_ACCESS_TOKEN
When I access the above URL from a browser, I was able to retrieve users Facebook wall information successfully as follows:
{
data: [
{
id: "",
from: {
name: ",
id: ""
}}]}
But I receive OAuthException on accessing the same URL from a Java code. My Java code is:
String fbURL = "https://graph.facebook.com/"+FACEBOOK_USER_ID+"/"+
"feed?access_token="+MY_FACEBOOK_APP_ACCESS_TOKEN;
HttpClient httpclient = new HttpClient();
PostMethod post = new PostMethod(fbURL);
httpclient.executeMethod(post);
String response = post.getResponseBodyAsString();
When I tried to print the response json, I get
{"error":{"message":"(#200) The user hasn't authorized the application to perform this action","type":"OAuthException","code":200}}
Why is this so? When I access https://graph.facebook.com/FACEBOOK_USER_ID/feed?access_token=MY_FACEBOOK_APP_ACCESS_TOKEN from a browser, I get a proper response JSON. But while executing from a java code I receive OAuth exception.
Can anyone suggest me what I am doing wrong?
Thank you.