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.