Skip to content

IG User

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

Represents as Instagram business or creator account.

Code

use Instagram\User\User;

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

// instantiate and get the users info
$user = ( new User( $config ) )->getSelf();
Clone this wiki locally