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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:30:15+00:00 2026-05-18T01:30:15+00:00

I have a problem. I want to use the facebook api and make a

  • 0

I have a problem. I want to use the facebook api and make a post to my wall without calling a dialog. Basically I have an app and I want people to be able to share the app, so I want to have a specific message to post. I keep getting a response of “Method not implemented”. Heres the code for the post.

//I tried this also ->>String path = "http://graph.facebook.com/me/feed";
String path = "https://api.facebook.com/method/stream.publish";
Bundle b = new Bundle();
//And i tried this -> b.putString("access_token",facebook.getAccessToken());
b.putString("message", "this is just a test...");
try {
    String ret = facebook.request(path, b);
    Toast.makeText(fmasterActivity.this, ret, Toast.LENGTH_LONG).show();
    } catch (MalformedURLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
  • 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-05-18T01:30:16+00:00Added an answer on May 18, 2026 at 1:30 am

    I am assuming that you are doing that bit of code after the user successfully authenticates?

    This bit of code worked for me:

    private Facebook mFacebook;
    private AsyncFacebookRunner mAsyncRunner;
    
    private void onFacebookShare() {
        mFacebook = new Facebook();
        mAsyncRunner = new AsyncFacebookRunner(mFacebook);
    
        SessionEvents.addAuthListener(new SampleAuthListener());
        SessionEvents.addLogoutListener(new SampleLogoutListener());
    }
    
    private void postToFBWall() {
        if(mFacebook.isSessionValid()){
            shareVideoOnFB();
        } else {
            showDialog(DIALOG_FBOOK_LOGIN);
        }
    }
    
    public void shareVideoOnFB(){
        Bundle params = new Bundle();
        params.putString("message", "This string will appear as the status message");
        params.putString("link", "This is the URL to go to");
        params.putString("name", "This will appear beside the picture");
        params.putString("caption", "This will appear under the title");
        params.putString("description", "This will appear under the caption");
        params.putString("picture", "This is the image to appear in the post");
    
        mAsyncRunner.request("me/feed", params, "POST", new RequestListener() {
            public void onMalformedURLException(MalformedURLException e) {}
            public void onIOException(IOException e) {}
            public void onFileNotFoundException(FileNotFoundException e) {}
            public void onFacebookError(FacebookError e) {}
            public void onComplete(String response) {
                logoutFacebook();
            }
        }); 
    
        Toast.makeText(ShareActivity.this, "Posting to your Wall...", Toast.LENGTH_SHORT).show();       
    }
    

    You can call onFacebookShare() in your activity’s onCreate(), and then when the user presses whatever to indicate that s/he wants to share on Facebook, call postToFBWall(). Of course you have to add in handling to show the login dialog.

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

Sidebar

Related Questions

I still have a problem with the splash screen. I don't want to use
Problem 1: I have a simple winforms app and I want to DataBind my
I'm facing a strange problem right now... I'm trying to use Facebook API to
I have problem with return statment >.< I want to store all magazine names
I have a little Java problem I want to translate to Python. Therefor I
I have a problem with stopping a service and starting it again and want
I have small problem with my .net 2.0 winforms application. I want to embed
I have a simple, real life problem I want to solve using an OO
I have a small problem with a script. I want to have a default
I have a small problem with how should i think a... problem. I want

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.