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.

My Android app calls the Facebook Feed dialog and customizes it like this:

Bundle feedDialogParameters = new Bundle();
feedDialogParameters.putString("name", "My Name");
feedDialogParameters.putString("link", "My Link");
feedDialogParameters.putString("picture", "My Picture");
feedDialogParameters.putString("caption", "My Caption");
feedDialogParameters.putString("description", "My Description");

facebook.dialog(getActivity(), "feed", feedDialogParameters, new PostDialogListener());

This works great, but now I would like to add some text and a hyperlink to the dialog. I know this is possible through the JavaScript Facebook API, by including a "properties" parameter, but I have been unable to find the equivalent for Android. How does one do this?

share|improve this question

1 Answer

You can try this maybe, to see if helps: parameters.putString("link", "http://www.google.com");

share|improve this answer
That works for linking the picture and the title of the Feed Dialog, which you can see I've done above. But what I'm trying unable to get working is the "properties" parameter, which allows you to include some text with a hyperlink in it. – Steph Dec 5 '12 at 20:50

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.