Facebook API post on newsfeed - facebook

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.

Related

post to instagram and facebook using api

Let's say I have a facebook page, if any post happens on that page the same content should also get posted automatically on my instagram as well. how can I achieve that, I have been looking at facebook graph api documentation for hours now but I am very confused, any guideline on which approach should I take?
Instagram does not offer any API to post to their platform. I am afraid there is no way.
Edit: There is an option, but it is limited to IG business accounts: https://developers.facebook.com/docs/instagram-api/guides/content-publishing
Facebook Graph API:
https://developers.facebook.com/docs/graph-api/ and Instagram Graph API: https://developers.facebook.com/docs/instagram-api/
In order to post anything on Instagram, you need a creator or a Business account. Also, you need to connect Facebook and Instagram in order to post anything. That is because posting on Instagram is done indirectly through Facebook pages. See here for more info on how it can be done: https://developers.facebook.com/docs/instagram-api/overview

Facebook share response after share post on facebook by API

We are trying to get response from facebook after successful share a feed on Facebook by add this API or Share.php page of facebook. But we are not getting any response from there.
Anyone can suggest how we will check feed share or not in facebook.

Facebook Graph API /{page-id}/feed not getting all posts

I am using /{page-id}/feed endpoint of Facebook Graph API to get the feed from a particular page.
There in the response a post from an user to the page is missing, though from facebook portal I am able to see that post on that page. As that post is visible there I can assume that is public.
Another post from the same user on a different page is also not coming in response.
Any idea on why the post is not getting returned ? also I need details about what kind of data is not supported by facebook page feed API.
Your answer will be really appreciated.

Post to facebook wall as a visitor trough API

I have a facebook page for a project I am doing. I embedded the timeline stream in my external website, but now I want visitors of my website to be able to post to my wall. They need to be able to post as themselves, not the administrator of the page.
How should I do this ?
#EDIT: I searched the facebook developers page allready ofcourse, but didn't find the info I need.
In this case
Facebook PHP API post to wall falls under "Recent Posts by Others"
they posting to a FB Wall maybe u have to check if the access token u get from the users allow a post to a page wall.

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.