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
Tags
Last update
2020/04/13 19:12
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api ^2.0.4
Last update
2020/04/13 19:12
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api ^2.0.4
Last update
2020/04/09 17:24
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api ^2.0.1
Last update
2020/04/09 11:47
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api ^2.0.1
Last update
2020/04/09 11:31
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api 2.0.0
Last update
2020/02/16 13:50
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api 1.13.19
Last update
2020/02/11 08:53
License
Require
- php >=5.6.4
- michelmelo/instagram-private-api ^1.12.0
Last update
2020/02/11 08:52
License
Require
- php >=5.6.4
- michelmelo/laravel-instagram-api ^1.12.0
Last update
2020/02/11 08:48
License
Require
- php >=5.6.4
- michelmelo/laravel-instagram-api ^1.12.0
Last update
2020/02/11 08:48
License
Require
- php >=5.6.4
- michelmelo/laravel-instagram-api ^1.12.0
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.