Skip to content
Justin Stolpe edited this page May 21, 2022 · 7 revisions

Get the Instagram user connected to a facebook page.

Code

use Instagram\Page\Page;

$config = array( // instantiation config params
    'page_id' => '<FACEBOOK_PAGE_ID>',
    'access_token' => '<ACCESS_TOKEN>',
);

// get page info            
$page = ( new Page( $config ) )->getSelf();
Clone this wiki locally