Skip to content

IG User

Justin Stolpe edited this page May 21, 2022 · 8 revisions

Represents as Instagram business or creator account.

use Instagram\User\User;

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

// instantiate user for use
$user = new User( $config );

// get user info
$userInfo = $user->getSelf();
Clone this wiki locally