Edit Facebook Page Information Using Graph API

I want to edit information on a Facebook page using the Graph API. Every time I update on my website, I want to automate updating the information on my Facebook page.

+4
source share
1 answer

You can publish a status message on the page by sending an HTTP POST request to PAGE_ID / feed with publish_stream and manage_pages permissions and the following parameters.

  Parameter Description Type Required
 message Status Message content string yes 
+1
source

All Articles