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.

enter image description here

I post a message on facebook using the bundle shown below.

Bundle postParams = new Bundle();
postParams.putString("name", "Facebook SDK for Android");
postParams.putString("caption", "Build great social apps and get more installs.");
postParams.putString("description", "The Facebook SDK for Android makes it easier and faster to develop Facebook integrated Android apps.");
postParams.putString("link", "https://developers.facebook.com/android");
postParams.putString("picture", "https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png");
Request request = new Request(Session.getActiveSession(), "me/feed", postParams, 
                                  HttpMethod.POST, null);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();

How to set an icon and add an action in a facebook post using facebook api? I had tried it, the solution can't help me.

share|improve this question
Isn't working like that stackoverflow.com/questions/5300128/… – Göksel Güren Mar 28 at 8:56

1 Answer

You can't set it per message you post. The icon that appears there is what ever the icon you set from the developer dashboard.

share|improve this answer
But I already set the icon from the developer dashboard. When I post message to the wall in using facebook api, the icon doesn't appear. I should do what something? – tang Feb 27 at 9:56
You sure under 'App Details' -> 'Primary Icons' you've set a 16x16 icon? – JanithaR Feb 27 at 10:10
yes! this app is my test app, it doesn't upload to google play yet. it may be the problem? – tang Feb 27 at 10:24
Well, there could be many reasons. All leading to some mistake you've done. I can't tell you where exactly without checking your project. – JanithaR Feb 27 at 13:24

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.