cosenary / Instagram-PHP-API

An easy-to-use PHP Class for accessing Instagram's API.
http://cosenary.github.com/Instagram-PHP-API
BSD 3-Clause "New" or "Revised" License
1.46k stars 782 forks source link

Case sensitivity #234

Open TonyGrima opened 7 years ago

TonyGrima commented 7 years ago

Thanks for the package - works fine for me but I found a problem in Instagram.php at line 633. This causes a failure but if I change 'X-Ratelimit-Remaining' to lower case it works.

 $this->_xRateLimitRemaining = $headers['X-Ratelimit-Remaining'];

to: $this->_xRateLimitRemaining = $headers['x-ratelimit-remaining'];