I know I can access the Score API to store the player's score on Facebook. My question is what if I want to score multiple score values, how can I do that?
For example, I want to store Highscore and Total Distance Travelled. The way I'm doing now is:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithFormat:@"%d", mScore], @"score",
nil];
[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%llu/scores",
fbid] parameters:params HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error)];
But this only allow me to store one value, because by calling the same thing again for other value, it will overwrite the old value.
Anyone know how can I store multiple values? Please help.