PHP insights, tips and tricks

Create your own Instagram app with PHP

Register your application Instagram to get your OAuth credentials.
Make sure to set your callback URL as a web address that is accessible anywhere from tje Internet, something like http://yourdoma.in/callback.php
Download the latest version of the code in zip or tar.gz format.
Unpack the code and modify the credentials stored in the $config variable of example.php to the [...]

Instagram API implementation in PHP

Instagram recently released an official API. Initially, they had implementations in Python and Ruby, so I decided to build mine in PHP with a little help from Zend Framework.
In order to use the official API, you have to sign up first for a client key at http://instagr.am/developer/. You will need to register a new client [...]