Page - jstolpe/instagram-graph-api-php-sdk GitHub Wiki

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();