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.
ERROR :- {"error":{"message":"(200) The user hasn't authorized the application to perform this action","type":"OAuthException","code":200}} 

I Used the following Code in my application. In this Code if I Open my Facebook account then it is Successfully Post but if other person is logged in then it can't post on his wall.

public void postMessageOnWall(String msg) throws FacebookError, JSONException
{
    if (facebook.isSessionValid())
    {
        Bundle parameters = new Bundle();
        parameters.putString("message", msg);
        try
        {
            //JSONObject response=Util.parseJson(facebook.request("me/feed", parameters,"POST"));
            String response = facebook.request("me/feed", parameters,"POST");
            System.out.println(response);
        } 
        catch (IOException e) 
        {
            e.printStackTrace();
        }
    }
    else
    {

    }
}

I used the FACEBOOK_PERMISSION = "publish_stream" while sharing on facebook.

share|improve this question
What permission do you ask for the users? If the code works for you and not for other people, then it seems like the code asked for some kind of permission for you and some other types of permission for other users! – theAlse Jul 13 '12 at 7:31

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.