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'm developing a web site that connects to FB using the graph api, I followed all the steps on getting a code, token, etc. I can retrieve the user's Json object. But when I try to post a wall message like this https://graph.facebook.com//feed: The response is returning

{

“error”: {

“type”: “OAuthException”,

“message”: “Error validating application.”

}

}

To do the post I'm using the apache HttpClient with a code similar to this:

HttpClient client=new DefaultHttpClient();
    HttpPost postRequest = new HttpPost("https://graph.facebook.com/"+user.getId()+"/feed:");
     List<NameValuePair> postParameters = new ArrayList<NameValuePair>();
     postParameters.add(new BasicNameValuePair("access_token", accessToken));
     postParameters.add(new BasicNameValuePair("message", "Wall Message"));
     try {
     UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(postParameters);
     postRequest.setEntity(formEntity);
     HttpResponse resp = client.execute(postRequest);
     System.out.println(FBUtil.stringFromInputStream(resp.getEntity().getContent()));
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

What's does Error validating application means?. And how could I do to sucessfully post the message on the user's wall. Thanks a lot.

share|improve this question

1 Answer

The error was that I was passing incorrectly the access_token value. But when I included the right value I got another exception

{"error":{"type":"OAuthException","message":"Invalid access token signature."}}

This is the full code I'm using to post a message on user's wall. What I'm doing wrong?

String code=request.getParameter("code");
    if(code==null)
    {
        //Save the message sent from the client in session
        String message=request.getParameter("message");
        request.getSession().setAttribute("message", message);

        String redirectUri="http://www.facebook.com/dialog/oauth?client_id=" 
        +APP_ID+"&redirect_uri="+REDIRECT_URL;
        try {
            response.sendRedirect(redirectUri);
            return;
        } catch (IOException e) {

            e.printStackTrace();
        }
    }
    String tokenUrl= "https://graph.facebook.com/oauth/access_token?client_id="+APP_ID+
                "&redirect_uri="+REDIRECT_URL+"&client_secret="+APP_SECRET+"&code="+code;
    String accessToken=FBUtil.stringFromURLContents(tokenUrl);
    String accessTokenParts[]=accessToken.split("=");
    String graphUrl= "https://graph.facebook.com/me?access_token="+accessTokenParts[1];

    Gson gson=new Gson();
    FBUserObject user=gson.fromJson(FBUtil.stringFromURLContents(graphUrl), FBUserObject.class);
    HttpClient client=new DefaultHttpClient();


    //Post message on users wall
    String wallMessage=(String)request.getSession().getAttribute("message");

    HttpPost postRequest = new HttpPost("https://graph.facebook.com/+"+user.getId()+"/feed");
     List<NameValuePair> postParameters = new ArrayList<NameValuePair>();


        postParameters.add(new BasicNameValuePair("access_token", accessTokenParts[1]));

     postParameters.add(new BasicNameValuePair("message", message));
     //postParameters.add(new BasicNameValuePair("type", "client_cred"));
     try {
     UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(postParameters);
     postRequest.setEntity(formEntity);
     HttpResponse resp = client.execute(postRequest);
     System.out.println(FBUtil.stringFromInputStream(resp.getEntity().getContent()));
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.