Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.