skip to Main Content

I am trying to pull a small group of feed/post objects from Facebook Graph API from an array of post ids.

string[] postids = {1234,1235,1236}

Could someone kindly show me the query string that request the posts?

I’ve tried using (but I know it’s not correct)

https://graph.facebook.com/me/feed?ids=1234,1235,1236

No luck

2

Answers


  1. Chosen as BEST ANSWER

    I figured it out. I was pulling from the feed end point in one query and the ids were different based on the query.


  2. You need to include the api version number in your Get request. For example, your URL should look like this:

    https://graph.facebook.com/v2.8/?ids=1234,1235,1236
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search