Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9130571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:59:14+00:00 2026-06-17T07:59:14+00:00

Does Facebook allow that user A using mobile app posts something (text, image or

  • 0

Does Facebook allow that user A using mobile app posts something (text, image or URL) on user B’s wall?

I have been searching for this for a couple of days, but I cannot find anything about it in Facebook API docs.

To make it clear, I do not need to post something on my own wall, but on my friend’s wall using Facebook API.

Am I right saying that this is not possible/allowed at this moment?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:59:15+00:00Added an answer on June 17, 2026 at 7:59 am

    Use this piece of code to post on another user’s wall.

    Bundle postStatusMessage = new Bundle();
    
    // ADD THE STATUS MESSAGE TO THE BUNDLE
    postStatusMessage.putString("message", finalStatusMessage);
    
    Utility.mAsyncRunner.request(userID + "/feed", postStatusMessage, "POST", new StatusUpdateListener(), null);
    

    You can also upload a photo with the above code, like this:

    byte[] data = null;
    
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Bitmap bmpImageCamera.compress(CompressFormat.JPEG, 100, baos);
    data = baos.toByteArray();
    
    Bundle postImgGallery = new Bundle();
    
    // ADD THE PHOTO DATA TO THE BUNDLE
    postImgGallery.putByteArray("photo", data);
    

    And then use this to check the result.

    private class StatusUpdateListener extends BaseRequestListener  {
    
        @Override
        public void onComplete(String response, Object state) {
    
        }
    
        @Override
        public void onFacebookError(FacebookError e, Object state) {
    
        }
    
    }
    

    If successfully posted, String response in the onComplete() will give you an ID for the post.

    NOTE 1: The above code uses the older Facebook SDK (Pre v 3.x) so you will have to adapt the code to work with the new SDK if you are using it. It will need a few minor changes.

    NOTE 2: Facebook has planned to stop the ability to let applications post to other users walls. Source: https://developers.facebook.com/blog/post/2012/10/10/platform-updates–operation-developer-love/. Going forward, you will need to use the feed dialog option.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does Facebook provide a URL the user can access that will take him to
I have created a website that allow user use facebook login system to regist
How does one retrieve a users friends using facebook connect so that a user
I know you cant do that with the Facebook API. Does OpenSocial allow me
Does their API allow my Facebook-connected user to add a friend?
I have an Android application that allows the user to connect to his Facebook
I have created Facebook Test Users using the API. Facebook doesn't allow updates to
I am building an app that starts when a user takes a picture using
I have a Facebook app with which I'd like to display an image in
I am using the official Facebook SDK for Android in my app. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.