I want to share a link using Facebook Graph API. I am doing following.
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Description goes here.",@"description",
@"www.google.com/image.jpg",@"picture",
@"www.google.com/invites/username", @"link",
@"Google",@"name",
@"www.google.com",@"caption",
nil];
Facebook *fb = [Model shared].facebook;
[fb requestWithGraphPath:@"me/links" andParams:params andHttpMethod:@"POST" andDelegate:self];
and I want the FB Post to be like this:

But what I ‘ve learned is that Facebook Graph API takes the image and the description by itself from the shared page.
Is there any way to customize the content that you want to share?
If you post
linkFacebook get OpenGraph tags (likepictureanddescription) from page located onURLyou specify aslink.Using Graph API by publishing
postobject instead oflinkallow you to specify custom info.Actually to achieve this you can just change
me/linkstome/feed: