-
Notifications
You must be signed in to change notification settings - Fork 31
Stories
Justin Stolpe edited this page May 21, 2022
·
3 revisions
Get stories for an Instagram user.
use Instagram\User\Stories;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>',
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate stories
$stories = new Stories( $config );
// get stories for a user
$userStories = $stories->getSelf();