Can not get post from others in Facebook Group API - facebook

I'm using Facebook Graph API to get all post from my group which I am admin. But I can only get posts which posted by myself.
Here is my url to call api:
https://graph.facebook.com/v11.0/{my-group-id}/feed?access_token={my-token}
How I can get post by the other member?
Thank you very much!

Related

Facebook API post on newsfeed

I am using facebook API for posting in group and pages. I dont see an endpoint where I can post on my own newsfeed. What I see is only I can share content via fb link. Does someone know where could I find the endpoint on posting on own newsfeed? Thanks.

How to get other's comments to my post through facebook api

I want to get who commented or liked to my post on Facebook through facebook api.
I used Facebook Graph API and could get post_id.
And used this endpoint: {POST_ID}/comments, but it returned only my comments.
Is there any way to get other's comments with user id?

Facebook Graph API not returning some conversations

I am using facebook graph api to get all the conversations of a facebook page using the page access token. Everything is working fine. However , in some cases the graph api is not returning all the conversations. The conversation is present in the inbox when I go and check it but the graph api is not returning the same. How could this be happening? I googled a lot about this , but to no luck. Any help would be greatly appreciated.
Note: I am using graph api explorer to pull the conversations using the conversations endpoint.

Graph API get user id facebook

How can I do this? Im using Graph API v2.3
I am able to get the access token, but I don't know how to get the user's ID.
I think your post is duplicated...
Btw, just send a request to:
https://graph.facebook.com/me?access_token=...

How to comment and Like on friends wall through FBGraph API?

How to comment and Like on friends wall through FBGraph API?
Documentation with examples on how to do this is at at http://developers.facebook.com/docs/api/.
You need to
authenticate (get an access token)
know your friend's ID
do an HTTP POST to the right URL to create posts or like existing posts.
The section labelled "Publishing" on the aforelinked documentation page shows how to do this.