Looking to hire Laravel developers? Try LaraJobs

laravel-instagram-api maintained by michelmelo

Description
Implementation Instagram private API for Laravel
Author
Last update
2020/04/13 19:12 (dev-master)
License
Downloads
361

Comments
comments powered by Disqus

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