romulo126/instagramgetposts

获取Instagram用户POST的图片、视频、点赞和描述

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

This package is auto-updated.

Last update: 2024-09-14 22:10:43 UTC


README

composer require romulo126/instagramgetposts

API

示例用户

<?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'));```