Skip to content

michelmelo/laravel-instagram-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 13, 2020
620ee08 · Apr 13, 2020

History

45 Commits
Feb 11, 2020
Apr 9, 2020
Apr 9, 2020
Feb 11, 2020
Nov 14, 2019
Apr 13, 2020
Jan 2, 2020

Repository files navigation

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