Skip to content

IG User Live Media

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

Live media for an Instagram user.

use Instagram\User\LiveMedia;

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

// instantiate live media
$liveMedia = new LiveMedia( $config );

// initial response
$userLiveMedia = $liveMedia->getSelf();
Clone this wiki locally