romulo126/instagramgetposts

get images, videos, likes and descriptions of Instagram user POST

v1.0.0 2022-05-14 16:42 UTC

This package is auto-updated.

Last update: 2025-06-14 23:51:00 UTC


README

composer require romulo126/instagramgetposts

API

Exemple USer

<?php
require_once __DIR__.'/vendor/autoload.php';

use BotInstagramGetPosts\Services\Page\instaPageService;

$ts= new instaPageService();
## limit post
print_r($ts->requestPage('https://www.instagram.com/patoacademy/','key here',2));
## all Posts
print_r($ts->requestPage('https://www.instagram.com/patoacademy/','key here'));```