Hiii,I need to post a message on facebook wall with hyperlink included in the message.I tried the following code
Bundle parameters = new Bundle();
parameters.putString("message",message);
parameters.putString("attachment", "{\"name\":\""+"seriesname"+"\","
+"\"href\":\""+"http://www.google.com\","+"\"description\":\""+"sampledescriptinnn"+"\"}");
parameters.putString("description","Testing.....");
response = mFacebook.request("me/feed", parameters,"POST");
I am able to post the message on wall but hyperlink is never displayed.Can anyone tell me what is correct way to achieve this.Thanks.