Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Instagram PHP Scraper. Get account information, photos, videos, stories and comments.

Notifications You must be signed in to change notification settings

downace/instagram-php-scraper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[ABANDONED] Instagram PHP Scrapper

This package is abandoned. Use original postaddictme/instagram-php-scraper

This is the fork of postaddictme/instagram-php-scraper repo. Description from original:

This library based on Instagram web version. We develop it because nowadays it is hard to get approved Instagram application. The purpose support every feature that web desktop and mobile version support.

Fork Information

This fork provides ability to specify custom HTTP client for handling requests. Clients for guzzlehttp/guzzle and mashape/unirest-php are included.

Also, proxy methods are removed from Instagram class: proxy should be configured for HTTP client (following the principle of separation of concerns)

Installation

Using composer

composer require downace/instagram-php-scraper

If you don't have composer

You can download it here.

Examples

You can see examples of using original library here.

With Unirest (mashape/unirest-php is required):

$insta = new Instagram(new \InstagramScraper\HttpClient\UnirestClient());

With Guzzle (guzzlehttp/guzzle is required):

// \GuzzleHttp\Client with default options will be used
$insta = new Instagram(new \InstagramScraper\HttpClient\GuzzleClient());

// You can provide options for \GuzzleHttp\Client constructor
$insta = new Instagram(new \InstagramScraper\HttpClient\GuzzleClient([ 'timeout' => 5 ]));

// Or pass your own instance of \GuzzleHttp\ClientInterface:
$insta = new Instagram(new \InstagramScraper\HttpClient\GuzzleClient($myClient));

Using proxy:

// With Guzzle.
$insta = new Instagram(new \InstagramScraper\HttpClient\GuzzleClient([
    'proxy' => 'http://user:pass@localhost:8125'
]));

// With Unirest
Request::proxy('localhost', 8125, CURLPROXY_HTTP);
Request::proxyAuth('user', 'pass');
$insta = new Instagram(new \InstagramScraper\HttpClient\UnirestClient());

About

Instagram PHP Scraper. Get account information, photos, videos, stories and comments.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%