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 am able to post facebook feed through Facebook Android SDK; however, I found that the feed dialog doesn't have privacy setting button, did I do anything wrong?

    Bundle params = new Bundle();
    params.putString("description", "This is description!");
    params.putString("name", "appname");
    params.putString("captions", "This is captions!");
    params.putString("link", "http://www.google.com");

    facebook.dialog(this, "feed", params,

              new DialogListener() {
                   @Override
                   public void onComplete(Bundle values) {}

                   @Override
                   public void onFacebookError(FacebookError error) {}

                   @Override
                   public void onError(DialogError e) {}

                   @Override
                   public void onCancel() {}
              }
        );
share|improve this question
hey ur above code helped me for fb sharing. – Bhargavi May 14 '12 at 9:02

1 Answer

You can configure privacy via params in facebook.dialog(this, "feed",params, ...) see here for details

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.