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
I figured it out. I was pulling from the feed end point in one query and the ids were different based on the query.
You need to include the api version number in your Get request. For example, your URL should look like this: