-
Notifications
You must be signed in to change notification settings - Fork 30
Page
Justin Stolpe edited this page Oct 6, 2022
·
7 revisions
Get the Instagram user connected to a facebook page.
use Instagram\Page\Page;
$config = array( // instantiation config params
'page_id' => '<FACEBOOK_PAGE_ID>',
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate page
$page = new Page( $config );
// get info
$pageInfo = $page->getSelf();