I have an iPad app with Facebook SDK. App can share pictures to Facebook, Twitter and Email. In Facebook pictures are posted to the timeline.
I have statistics from Localitics - I just trigger some events in the code and send them to Localytics. According those stats users shared about 800 photos to Facebook. I believe those stats as in Twitter Localytics stats are very accurate (I can see al shares in my twitter as I mention my app in the tweet).
But according Facebook app insights I had only 33 "Photos created" events for the last month and only 22 monthly active users.
Here is the code I use in my app:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
imageToShare, @"picture",
text, @"name",
nil];
//Dictionary with Localytics event data
NSMutableDictionary *localyticsDict = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Facebook",
@"Sharing way",
nil];
[FBRequestConnection
startWithGraphPath:@"me/photos"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
NSString *alertText;
if (error) {
alertText = NSLocalizedString(@"Ooops... something went wrong.",@"Alert message text");
[localyticsDict setObject:@"Fail" forKey:@"Result"];
} else {
alertText = NSLocalizedString(@"Picture was successfully posted!",@"Alert message text");
[localyticsDict setObject:@"Ok" forKey:@"Result"];
}
[[LocalyticsSession sharedLocalyticsSession] tagEvent:@"Picture Shared" attributes:localyticsDict];
}];
I've removed some parts of the code, it just demonstrates how I share picture in my iOS app.