sohagsrz/instagram-media-downloader

A PHP library to download Instagram media.

v1.0.0 2024-05-17 00:47 UTC

This package is auto-updated.

Last update: 2024-05-26 00:54:11 UTC


README

This package can be installed via Composer:

composer require sohagsrz/instagram-media-downloader

Media download example

require_once 'vendor/autoload.php';
use InstagramMediaDownloader\Downloader;
$downloader = new Downloader();

$result = $downloader->get_by_shortcode('C16ErQiLCJm');

var_dump($result);

To get profile data

require_once 'vendor/autoload.php';
use InstagramMediaDownloader\ProfileDownloader;
$profile = new ProfileDownloader();
$result = $profile->getProfile('sohagsrz');
var_dump($result);

Contribution

If you find any issues or have suggestions for improvement, feel free to contribute to this project. You can fork the repository, make your changes, and submit a pull request.