FBSDKShareLinkContent

I Have a FB Dialog that is not posting all the content.

I get the link but nothing else I've defined in the FBSDKShareLinkContent.


This is my code, what am I missing?


/

FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];

content.contentURL = [NSURL URLWithString:@"https:/

content.imageURL = [NSURL URLWithString:@"http:/

content.contentTitle = self.nameField;

content.contentDescription = cityState;

FBSDKShareDialog *dialog = [[FBSDKShareDialog alloc ] init];

dialog.shareContent = content;

dialog.mode = FBSDKShareDialogModeShareSheet;

dialog.fromViewController = self;

[dialog show];


Thanks

Note: The URLs are complete in my actual code, not sure why they did not copy/paste