PHP client for Instagram API
Disclaimer: Although this project shares same name with famous social network but is NOT an official version of PHP SDKs for Instagram. The package is provided as it is with no guarantee or promises so please use at your own risk. Instagram is product of Instagram/Facebook.
- Download the latest release or install using Composer
- Register client at http://instagram.com/developer/clients/register/ and get
client_id
,client_secret
andredirect_uri
. - Here is a basic use example:
require('path/to/autoload.php');
use Instagram\InstagramClient;
$config = array(
'client_id' => 'CLIENT_ID',
'client_secret' => 'CLIENT_SECRET',
'redirect_uri' => 'http://example.com'
);
try {
$ig = new InstagramClient( $config );
} catch (Exception $e) {
echo $e->getMessage();
}
if ( isset($ig) && $ig ) {
/**
* Get a new access token with OAuth
*/
if ( isset($_GET['code']) ) {
$ig->get_access_token( $fresh = true, $_GET['code'] );
print_r( $ig->get_data() );
/**
* Make API requests. See various methods underneath.
*/
}
/**
* Or display a login with Instagram link for redirect user for OAuth
*/
else {
echo '<a href="' . $ig->get_oauth_url() . '">Login with Insgatram</a>';
}
/**
* Or set an existing access token
*/
$ig->set_access_token( 'A_valid_access_token_obtained_previously' );
print_r( $ig->get_data() );
/**
* Make API requests. See various methods underneath.
*/
}
Use following methods to make requests to Instagram API.
try {
$media = $ig->popularMedia( (int) $count = 25 );
$media = json_decode( $media );
print_r( $media );
} catch(Exception $e) {
echo $e->getMessage();
}
/**
* Atleast lat and lng are required to make requests to this endpoint
*/
try {
$media = $ig->searchMedia(
(float) $lat,
(float) $lng,
(UNIX_TIMESTAMP) $min_timestamp,
(UNIX_TIMESTAMP) $max_timestamp,
(int) $distance,
(int) $count = 25 );
$media = json_decode( $media );
print_r( $media );
} catch(Exception $e) {
echo $e->getMessage();
}
try {
$media = $ig->getMedia( (int) $media_id );
$media = json_decode( $media );
print_r( $media );
} catch(Exception $e) {
echo $e->getMessage();
}
MIT License - © Jabran Rafique 2014