Facebook API: Determine if Facebook Page is published / unpublished -
Facebook API: Determine if Facebook Page is published / unpublished -
what reliable way check whether facebook page published or unpublished using graph api? this:
http://graph.facebook.com/{page_id}
and check if homecoming value "false". if it's false, conclude it's unpublished , if returns graph object, conclude it's published. i'm noticing lot of published pages homecoming "false" above request.
here's example:
this page published: http://www.facebook.com/ajirestaurant
but these requests homecoming false: http://graph.facebook.com/104433516257517 (using page id) http://graph.facebook.com/ajirestaurant (using page username)
what best way check whether page published?
punch in under fql query on http://developers.facebook.com/tools/explorer
select page_id, name, username, is_published page page_id in (select page_id page_admin uid = me()) , is_published="" order fan_count desc
that select pages in business relationship , check if published, returning unpublished pages in list.
facebook facebook-graph-api facebook-page
Comments
Post a Comment