michelmelo/laravel-instagram-api

Implementation Instagram private API for Laravel


Keywords
laravel, instagram, instagram-api, api, instagram-private-api, laravel-instagram-api
License
WTFPL

Documentation

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