LaravelPackages.net
Acme Inc.
Toggle sidebar
michelmelo/laravel-instagram-api

Implementation Instagram private API for Laravel

361
9
1.17.0
About michelmelo/laravel-instagram-api

michelmelo/laravel-instagram-api is a Laravel package for implementation instagram private api for laravel. It currently has 9 GitHub stars and 361 downloads on Packagist (latest version 1.17.0). Install it with composer require michelmelo/laravel-instagram-api. Discover more Laravel packages by michelmelo or browse all Laravel packages to compare alternatives.

Last updated

License: MIT

Laravel Instagram API

Laravel integration for the Instagram private API package.

alteracoes

apikey

Install

composer require michelmelo/laravel-instagram-api

Add provider into your app.php config:

'providers' => [
    ...
    
    MichelMelo\InstagramApi\LaravelInstagramApiProvider::class,
    
]

Add alias into your app.php config:

'alias' => [
    ...
    
    'Instagram'    => MichelMelo\InstagramApi\Facades\InstagramApi::class,
    
]

Configuration

php artisan vendor:publish --provider="MichelMelo\InstagramApi\LaravelInstagramApiProvider" --tag=config

Edit config/mm-instagram-api.php.

Usage

Methods same Instagram Private API package.

Use \Instagram::setUser($username, $password)

instead

$instagram = new Instagram($debug);
$instagram->setUser($username, $password);

Pull Requests

Star History Chart