Set Facebook status using iphone app
- by gmcalab
I have just started with the new graph api for facebook.
I have gotten a few items to work like logging in and getting the user name and displaying this to the screen. I am having trouble figuring out how to set my status with the graph api... I have tried a couple things but I always receive and error response back.
Any ideas?
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"test2", @"test",
nil];
[_facebook requestWithMethodName:@"status.set"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];