Skip to content

Releases: postaddictme/instagram-php-scraper

User auth added

16 Mar 12:53
Compare
Choose a tag to compare

First of all thank you guys for your suggestions and support.
This is not final fix for getting medias by tags and locations.

Changes:
if you need to get medias by tags or locations:

$instagram = Instagram::withCredentials('username', 'password');
$instagram->login();
// And then you be able to query instagram with newly updated methods. (Notice that these methods are not static anymore)

$user = $instagram->getAccountById(3);
$medias $instagram->getLocationTopMediasById(1)
$medias = $instagram->getLocationMediasById(1);
$location $instagram->getLocationById(1);
$medias = self::$instagram->getTopMediasByTagName('hello');

Be carefull with login method. I am planning to implement session caching soon

v0.4.8: Merge pull request #65 from fabianoroberto/master

24 Feb 16:19
Compare
Choose a tag to compare
  • Check if video links exist in response (when type is video)

Fixes #59. Incorrect number of results returned for getMediasByTag();

23 Feb 14:32
Compare
Choose a tag to compare
v0.4.7

Fixes #59. Incorrect number of results returned for getMediasByTag();

v0.4.6: Merge pull request #57 from fabianoroberto/master

08 Feb 10:05
Compare
Choose a tag to compare
  • Improve converting id to hashcode and vice versa
  • Return hashtags count

v0.4.5

02 Dec 19:58
Compare
Choose a tag to compare
Enh. Get best image resolution possible in imageHighResolutionUrl in …

Image URLS broken for some medias in getMediaByCode()

02 Dec 19:32
Compare
Choose a tag to compare
v0.4.4

Fixes #47. Image URLS broken for some medias in getMediaByCode()

Make methods getContentsFromUrl and generateRandomString static

01 Dec 09:20
Compare
Choose a tag to compare
Merge pull request #48 from livebit/master

Make methods getContentsFromUrl and generateRandomString static.

Fix 405 error

30 Nov 15:31
Compare
Choose a tag to compare
  • Fix 405 error with fetching accounts by id
  • Fix 405 error with fetching comments by id

Url encode queries

19 Oct 07:05
Compare
Choose a tag to compare
Merge pull request #39 from shota/master

Add urlencode to endpoint urls

v0.4.0: Merge pull request #38 from fabianoroberto/master

11 Oct 12:35
Compare
Choose a tag to compare

Handle pagination with getPaginateMedias and getPaginateMediasByTag