I am giving a picture url http://graph.facebook.com/User_Id/picture as params to facebook feed dialog where user_id is the username of particular user on facebook. But it's showing an error on android that "FBCDN image not allowed in facebook stream". So, anybody know how to give picture from a profile on facebook???
Also how to make this picture attatch to a link that opens particular user profile on facebook or to link this picture to any url ????
Here is the code that i am using to give params to facebook feed dialog.
//Giving the params to feed dialog
Bundle params = new Bundle();
params.putString("message", facebookMessage);
params.putString("link", ComLabelConstants.FACEBOOK_LINK);
params.putString("name", linkname);
params.putString("picture", "http://graph.facebook.com/XXXX/picture");
params.putString("caption", ComLabelConstants.FACEBOOK_LINK_CAPTION);
params.putString("description", "This is description");
// displaying facebook dialogs
mFacebook.dialog(FbookAlertBoxActivity.this, "feed", params,
new SampleDialogListener(this, mAsyncRunner));