Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.