Skip to content
Justin Stolpe edited this page Oct 6, 2022 · 7 revisions

Get the Instagram user connected to a facebook page.

YouTube Tutorial

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();
Clone this wiki locally