I am using the Facebook iOS SDK and I want to get the maximum exposure for the application that I am currently updating.
At that moment, when the application prompts the user to connect to facebook when downloading the application, if the user is not already connected. If the user then connects, I use the following code to send a message to the users wall.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"http://itunes.apple.com/us/app/video-fx+/id530087007",@"link", @"Video FX+ Live Video Editing",@"name", @"Video FX+ is a fun, creative way to create stunning videos.",@"caption", nil]; [self.facebook requestWithGraphPath:@"/me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
Is this a better approach? Ideally, I want the message to appear on the friends wall of the user who is logged in.
Will the work be higher or do I need to display a list of friends of users, and then skip this list and send a message to each individual user?
thanks
source share