简体   繁体   中英

post on facebook with description android

I have used the code 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!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM