Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Via the Graph API...

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

  • the Info tab
  • add a profile tab (I successfully installed an app on the page via the "{page_id}/tabs?app_id..." call but it doesn't show up as a profile tab, not does it come back in the list of tabs in the response to the "{page_id}/tabs" call.)
  • -display my custom namespace properties on the page

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

  • check in to the page using built-in Facebook checkins, not my custom namespace checkins
share|improve this question

1 Answer

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

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.