michelmelo / laravel-instagram-api
Implementation Instagram private API for Laravel
Fund package maintenance!
michelmelo
www.paypal.me/michelmelo
michelmelo.pt
Installs: 355
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 1
Forks: 1
Open Issues: 0
Type:package
Requires
- php: >=5.6.4
- michelmelo/instagram-private-api: ^2.0.4
README
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
- Fill in the PULL_REQUEST template.