romulo126/instagramgetposts

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

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:lib

pkg:composer/romulo126/instagramgetposts

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

This package is auto-updated.

Last update: 2025-12-15 01:02:34 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'));```