post on facebook with description android
I have used the cod开发者_JS百科e from https://github.com/facebook/facebook-android-sdk. for facebook status update through app.
The code works fine, but I need to add some description below the post. I am unable to do so. I tried:
bundle.putString("message", "this is a demo message");
bundle.putString("description", "My Game");
bundle.putString("name", "is playing now...");
but it won't post. Has anyone used the same code and faced a problem like this.. please help me....
The description part of the bundle is actually the description of a link, since you have not provided a link the description will not be shown. So... I think you would be best to put the description as part of your message.
You can see an example of what i am saying in my answer to a question here. Hope this helps!
精彩评论