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 tried many ways to post a message to friend wall but no success:

Post on user's friends facebook wall through android application
Post message to facebook wall from android fb sdk always error
I also tested my account id and friend id aren't block from facebook, they can post message together in browser.
Here is my try:

    try { 
    Bundle params = new Bundle();

    params.putByteArray("message", "Test".getBytes());
    params.putByteArray("name", "American Virgin".getBytes());
    params.putByteArray("link", "http://bit.ly/12345".getBytes());
    params.putByteArray("description", "A Freshman College Girl on a scholarship from an ...".getBytes());
    params.putByteArray("picture", "http://xxx/MOV1026.jpg".getBytes());

    mAsyncRunner.request(((friendId == null) ? "me" : friendId) + "/feed", params,  new WallPostRequestListener());
    } catch (Exception e) {
        e.printStackTrace();
    }    

But it response error:

 {"error": {"message":"An access token is required to request this resource.",
    "type":"OAuthException","code":104}}

Then I tried to add token to the parameter but not work

     params.putString(Facebook.TOKEN, mFacebook.getAccessToken());

The problem is I can login success without error.
So, I need the right way to post a message to friend wall that worked for me.

share|improve this question
you able to post on your own wall? – M Mohsin Naeem Dec 9 '12 at 10:11
Yes, I can, I don't know where I am wrong – R4j Dec 9 '12 at 16:44
Can you post using the Graph API Explorer? developers.facebook.com/tools/explorer By the way in the future the ability to post to a friend's wall via the Graph API is going away soon (developers.facebook.com/blog/post/2012/10/10/…) so you don't want to build that into your app. – C Abernathy Dec 20 '12 at 21:04

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.