My class is a FBRequestDelegate and I'm not getting any errors on build yet I get nothing from didFailWithError or didReceiveResponse. I've been searching for close to a week now and simply cannot figure out what is wrong:
-(BOOL)postToFacebook:(NSString *)status{
NSLog(@"Posting to Facebook with status: \"%@\"", status);
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[params setObject:status forKey:@"message"];
[facebook requestWithGraphPath:@"me/feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
params = nil;
return YES;
}