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 8238739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:54:57+00:00 2026-06-07T19:54:57+00:00

I got a problem while posting text message on the wall. I expected the

  • 0

I got a problem while posting text message on the wall.
I expected the apps will login to fb and post a text message on the wall, but nothing is posted on my wall.

The following is my code
The login part is the same as the Facebook guide and i just added the permission “publish stream”

public class FB_trial extends Activity {
Facebook facebook = new Facebook("app_id");
private AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);  
private SharedPreferences mPrefs;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_fb_trial);
    /*
     * The following is tutorial sample code
     */
    mPrefs = getPreferences(MODE_PRIVATE);
    String access_token = mPrefs.getString("access_token", null);
    long expires = mPrefs.getLong("access_expires", 0);
    if(access_token != null) {
        facebook.setAccessToken(access_token);
    }
    if(expires != 0) {
        facebook.setAccessExpires(expires);
    }

    /*
     * Only call authorize if the access_token has expired.
     */
    if(!facebook.isSessionValid()) {
        facebook.authorize(this, new String[] {"publish_stream"}, new DialogListener() {
            @Override
            public void onComplete(Bundle values) {
                SharedPreferences.Editor editor = mPrefs.edit();
                editor.putString("access_token", facebook.getAccessToken());
                editor.putLong("access_expires", facebook.getAccessExpires());
                editor.commit();
            }
            @Override
            public void onFacebookError(FacebookError error) {}
            @Override
            public void onError(DialogError e) {}
            @Override
            public void onCancel() {}
        });
    }
    //end of the login sample code

    //post wall fx
    Bundle params = new Bundle();
    params.putString("message", "Fb testing message");
    params.putString("access_token", access_token);
    mAsyncRunner = new AsyncFacebookRunner(facebook);
    mAsyncRunner.request("me/feed", params, "POST", new RequestListener(){
        @Override
        public void onComplete(String response, Object state) {
            System.out.println("post wall success");
        }
        @Override
        public void onIOException(IOException e, Object state) {}
        @Override
        public void onFileNotFoundException(FileNotFoundException e,
                Object state) {}
        @Override
        public void onMalformedURLException(MalformedURLException e,
                Object state) {}
        @Override
        public void onFacebookError(FacebookError e, Object state) {}
    }, null);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_fb_trial, menu);
    return true;
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    facebook.authorizeCallback(requestCode, resultCode, data);
}

}

The “wall post success” message is shown in the log (is that means the request is complete?)
but i can’t find the post on my wall.

  • 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-07T19:54:59+00:00Added an answer on June 7, 2026 at 7:54 pm

    You can use the dialog to post to wall:

            Bundle params = new Bundle();
            params.putString("link", linkgame);
            params.putString("name", subject);
            params.putString("description", content);
            params.putString("picture", iconUrl);
    
            facebook.dialog(((Activity) ctx).getParent(), "feed", params,
                    new DialogListener() {
    
                        public void onComplete(Bundle values) {
                        }
    
                        public void onFacebookError(FacebookError error) {}
                        public void onError(DialogError e) {}
                        public void onCancel() {}
            });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code, but i got a problem. Within my While, a
I've got this problem for a while now and I cannot find a solution
i have a problem while loading a UITableView on UITabBarController, i got this error
I've stumbled upon an interesting problem while playing with my website. So I've got
I've got a problem converting an object property to string while using reflection... string
So I have a tiny problem. I got help here a while ago about
We've got a weird problem while migrating our app from 1.3.7 to 2.0.0. Our
I've got a little problem while managing .txt files on Android. I've found this
I've got a problem while parsing a OWLS Document (RDF) with Jena. The document
I've got a problem with XPathSelectElement while reading some xml-lines.... the function handleEachSession is

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.