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 posting some data on facebook from an android app. It works fine, apart from the fact that the dialog window is not showing the parameters, like text, etc... ![Please see image attached][1]

This is the code that I am using to show the dialog...

            try
            {
                Bundle parameters = new Bundle();
                parameters.putString("message", "this is a test");// the message to post to the wall
                facebookClient.authorize(activity.this, listener);
                facebookClient.dialog(myContext, "stream.publish", parameters, listener);// "stream.publish" is an API call
            }
            catch (Exception e)
            {
                // TODO: handle exception
                Log.i("test","error = "+e.toString());
            }

does anybody knows what I am doing wrong?

Thanks a lot

share|improve this question

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.