shoxrux / instagram-private-api
Instagram's private API for PHP
Requires
- php: >5.6
- ext-bcmath: *
- ext-curl: *
- ext-exif: *
- ext-gd: *
- ext-mbstring: *
- ext-zlib: *
- binsoul/net-mqtt-client-react: ^0.3.2
- clue/http-proxy-react: ^1.1.0
- clue/socks-react: ^0.8.2
- guzzlehttp/guzzle: ^6.2
- lazyjsonmapper/lazyjsonmapper: ^1.6.1
- psr/log: ^1.0
- react/event-loop: ^0.4.3
- react/promise: ^2.5
- react/socket: ^0.8
- symfony/process: ^5.0
- valga/fbns-react: ^0.1.8
- winbox/args: 1.0.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.11.0
- monolog/monolog: ^1.23
- phpunit/phpunit: ^5.7 || ^6.2
- react/http: ^0.7.2
Suggests
- ext-event: Installing PHP's native Event extension enables faster Realtime class event handling.
README
Installation
Dependencies
Install/enable the required php extensions and dependencies. You can learn how to do so here.
Install this library
We use composer to distribute our code effectively and easily. If you do not already have composer installed, you can download and install it here here.
Once you have composer installed, you can do the following:
composer require shoxrux/instagram-private-php
require __DIR__.'/../vendor/autoload.php'; $ig = new \InstagramAPI\Instagram();
If you want to test new and possibly unstable code that is in the master branch, and which hasn't yet been released, then you can do the following (at your own risk):
composer require shoxrux/instagram-private-php dev-master
Warning about moving data to a different server
Composer checks your system's capabilities and selects libraries based on your current machine (where you are running the composer
command). So if you run Composer on machine A
to install this library, it will check machine A
's capabilities and will install libraries appropriate for that machine (such as installing the PHP 7+ versions of various libraries). If you then move your whole installation to machine B
instead, it will not work unless machine B
has the exact same capabilities (same or higher PHP version and PHP extensions)! Therefore, you should always run the Composer-command on your intended target machine instead of your local machine.
Examples
All examples can be found here.