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?