robert-grubb / insta-scraper
Instagram PHP Scraper. Get account information, photos and videos without any authorization
Installs: 6 090
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 5
Forks: 2
Open Issues: 0
Requires
- php: >=5.4.0
- mashape/unirest-php: 3.0.*
- phpfastcache/phpfastcache: 5.0.*
Requires (Dev)
- phpunit/phpunit: 5.5.*
README
Credits to postaddictme/instagram-php-scraper for base
Installation
composer.phar require robert-grubb/insta-scraper
or
composer require robert-grubb/insta-scraper
Instantiation
use InstaScraper\Insta;
$Instagram = new Insta();
Documentation
For main package documentation: https://github.com/postaddictme/instagram-php-scraper
Fork Information
This fork includes the following:
-
getMediaWithTag()
- This method will find the first media with a specific tag.
-
Fixes getMedias issue (Because instagram removed the /media page)
- Now pulls from their timeline data via a graphql request, then grabs the data for each array item. (Increases load times, but not by much)
-
Better exceptions
- For better understand of what is actually happening when an error occurs, InstagramEncodedException is thrown. You can catch this exception and use
InstagramEncodedException->getDecodedMessage()
that will return the following:
- For better understand of what is actually happening when an error occurs, InstagramEncodedException is thrown. You can catch this exception and use
[
[error] => true,
[error_code] => 404,
[error_reason] => 'User does not exist'
]
Getting a media item with specific hashtag:
use InstaScraper\Insta;
$Instagram = new Insta();
$post = $Instagram->getMediaWithTag('test', '#awesome');
var_dump($post); // Returns InstaScraper\Model\Media Object