Mark Vayngrib
Mark Vayngrib

Reputation: 994

How to edit an Open Graph Object's facebook page via the Graph API?

Via the Graph API...

...I want to be able to edit page data like:

...I would also love to be able to:

Upvotes: 1

Views: 1884

Answers (1)

DMCS
DMCS

Reputation: 31860

Per https://developers.facebook.com/docs/reference/api/page/#tabs you can HTTP Post your updates using /PAGE_ID/tabs/TAB_ID, HTTP Delete your tab, HTTP post a new tab using PAGE_ID/tabs

You will need to get a page access token from the admin of the page to do any of those. See https://developers.facebook.com/docs/reference/api/page/#page_access_tokens

Upvotes: 1

Related Questions