I have an iOS app that can create shares on Facebook. The sharing itself works fine but we don't see a text for the "shared via" line as you can see in the attached image. It just says "shared a link via .". I expect the text to be "shared a link via APPNAME." instead.
I already tried to add some settings for the Facebook App but that did not help.
This is how I trigger the share in my iOS app:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
name], @"name",
caption, @"caption",
description, @"description",
url, @"link",
picture, @"picture",
nil];
[FBRequestConnection startWithGraphPath:@"/me/feed"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (!error) {
// ...
} else {
// ...
}
}];
Where can I make this setting? Is it a setting for the Facebook App or do I have to add that to the sharing call in my iOS app?