How to get Batch Status from Facebook API using RestFB

52 views Asked by At

I'm using RestFB api to comunicate with Facebook API.

After I send batch requests, I need to GET check_batch_request_status to know the status of all my requests.

Using Postman I did it, but using the RestFB API I didn't found how to do it.

I'm tried to use this, but I think this method is just for the RestFB "model classes" (HandleResponse.class is my own created class):

HandleResponse fetchObject = client.fetchObject(HANDLE_ITEMS_BATH_PATH, HandleResponse.class, Parameter.with("handle", handle));,

With postman: https://graph.facebook.com/v8.0/{CATALOG_ID}/check_batch_request_status?handle={HANDLE_ID}

Is there a way to do it with RestFB API?

0

There are 0 answers