Following is my event id 160575387429073 and if you can access 160575387429073/feed you can see one photo and one video posted on event's wall. I want to delete my video. I am using the following code:
[FBRequestConnection startWithGraphPath:@"160575387429073_160579220762023"
parameters:nil
HTTPMethod:@"DELETE"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (!error) {
NSLog(@"RESULT: %@", result);
}
else {
NSLog(@"ERROR: %@", [error localizedDescription]);
}
}];
It returns TRUE but when I again fetch the feed it gives me all the posts. Need urgent help is required.