Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
it seems that the user id / acces_token combination is not valid – scibuff Apr 18 '12 at 9:31
Thank you for the reply. I feel the combinations are right. Because, when I try to access the same URL in a browser, I can retrieve users wall information. Only on executing from my java code, getting such OAuth exception. Why so? – Venkat Apr 18 '12 at 9:52
I found a solution. Instead of using httpclient, I tried with reading directly from the URL as explained in docs.oracle.com/javase/tutorial/networking/urls/readingURL.html. Not sure why I wasn't able to retrieve through httpclient. If anyone knew the answer, please update. Thank you. – Venkat Apr 18 '12 at 11:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.