Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7978159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:24:58+00:00 2026-06-04T09:24:58+00:00

Is there any way to retrieve or delete multiple Facebook request_ids in one Facebook

  • 0

Is there any way to retrieve or delete multiple Facebook request_ids in one Facebook Graph API call?

For example, if a user receives multiple requests from different people for the same app, they will be grouped as one notification and all the request_ids will be passed to the app as a comma separated list when the user accepts the notification. Is there any way to avoid having to loop through each one and individually retrieve/delete it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T09:25:00+00:00Added an answer on June 4, 2026 at 9:25 am

    Binyamin is correct that batch requests would probably work. However, I discovered that to fetch request data by request_ids, you can simply pass them as a comma separate list and avoid doing a batch request.

    NSString *requestIds = @"123456789,987654321";
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:requestIds forKey:@"ids"];
    [facebook requestWithGraphPath:@"" andParams:params andDelegate:self];
    

    Your final graph URL wants to look like:

    https://graph.facebook.com/?ids=REQUEST_ID1,REQUEST_ID2,REQUEST_ID3&access_token=ACCESS_TOKEN
    

    For the delete operation, I believe a batch operation is still required. When you get the request_id data back from FB from the above call, it will be an NSDictionary with each result_id as a key. You can look at each key and create a batch operation to delete them all.

    NSDictionary *requests = DATA_RETURNED_FROM_FACEBOOK;
    NSArray *requestIds = [requests allKeys];
    NSMutableArray *requestJsonArray = [[[NSMutableArray alloc] init] autorelease];
    for (NSString *requestId in requestIds) {
        NSString *request = [NSString stringWithFormat:@"{ \"method\": \"DELETE\", \"relative_url\": \"%@\" }", requestId];
        [requestJsonArray addObject:request];
    }
    NSString *requestJson = [NSString stringWithFormat:@"[ %@ ]", [requestJsonArray componentsJoinedByString:@", "]];
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:requestJson forKey:@"batch"];
    [facebook requestWithGraphPath:@"" andParams:params andHttpMethod:@"POST" andDelegate:nil];
    

    Note that the current limit on batch requests is 50, per https://developers.facebook.com/docs/reference/api/batch/. So to be completely safe you should check the count of request_ids and if it is greater than 50, you will have to do multiple batch requests.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to retrieve all friends in a particular network? For example,
Is there any way to retrieve existing Hbase table name with java API?
Is there any way to retrieve a table from a web service to a
Is there any way to retrieve the names of the stored procedures by some
Is there any way to retrieve the address map file for ntdll.dll? I know
Is there any way to retrieve the parent layout of a widget in Qt?
Is there any way to retrieve information about how many extra displays there are
Is there any way to retrieve the SSL session Id serverside in asp.net?
is there any way to retrieve phone info such as language so that i
Is there any way to retrieve a control's position in a form, when the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.