You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @ley-288 pagination wasn’t intentionally built into this package. You can just request as many items as you want, and the package will use Instagram’s pagination to get the required amount.
while ($this->shouldFetchNextPage($response, $collection->count(), $limit)) { $response = $this->fetchResponseData($response['paging']['next']); $collection = $collection->merge($response['data']) ->reject(function ($media) { return $this->ignoreVideo($media); }); }
Hi, When I call a var_dump or {{dd($x)}} the ['paging']['next'] is not in the array.
The text was updated successfully, but these errors were encountered: