a library for instagram private web api
From composer
composer require hamedsz/instagram-private-api
or clone , download it.
use hamedsz\instagram_private_api\Instagram;
require_once 'vendor/autoload.php';
$instagram = Instagram::create("USERNAME" , "PASSWORD")
->login();
Follow by id
use hamedsz\instagram_private_api\Instagram;
use hamedsz\instagram_private_api\Requests\FriendShips\Follow;
require_once 'vendor/autoload.php';
$instagram = Instagram::create("USERNAME" , "PASSWORD")
->login();
$follow = new Follow($instagram , USER_ID);
$followResponse = $follow->execute();