I need to post the details on the wall, When login the facebook I got the following error,
- (void)dialog:(FBDialog*)dialog didFailWithError:(NSError *)error {
NSLog(@"Error message: %@", [error localizedDescription]);
}
The operation couldn’t be completed. (NSURLErrorDomain error -999.)
First time only I got this error, Next time its shared perfectly. For sharing I am using like this,
[[delegate facebook] dialog:@"feed"
andParams:params
andDelegate:self];
How can I fix this error. Why this error was occurred.
Thank you.