Recommend this page to a friend! |
Download .zip |
Info | Example | View files (3) | Download .zip | Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not yet rated by the users | Total: 200 | All time: 8,395 This week: 192 |
Version | License | PHP version | Categories | |||
instagram-downloader 1.0.0 | BSD License | 5 | PHP 5, Graphics, Web services, Social... |
Description | Author | |
This package can get images uploaded to Instagram using its API. |
Instagram API Wrapper class will help to create a base wrapper class for Instagram API request/response with OAuth. You have to register yourself as developer at the Instagram Developer Platform and set up an App. Then use the credentials generated from the Instagram developer account in the wrapper class to call two class functions. This class aims at handshaking with instagram by authenticating user (OAuth2) and then perform below functionalities. 1. Get images uploaded by instagram username 2. Get images uploaded based on the hashtags usage: //include instagram wrapper class include "class.instagram_api_wrapper.php"; //Initialize the class //create object of the main class $obj=new instagram_api_wrapper(); //assign values to the Instagram clientid, secret, and redirect url $obj->client_id='YOUR INSTAGRAM CLIENT ID'; $obj->secret='YOUR INSTAGRAM SECRET KEY'; $obj->redirect_url='YOUR APPLICATION REDIRECT URL'; //set media for the username - media will be returned for the username //in case of SANDBOX ACCOUNT USE YOUR USERNAME $search_by_username = 'USERNAME_YOU WISH TO SEARCH'; //set media for the hashtag - media will be returned for the hashtag $search_by_tag ='business'; //Authenticate user (OAuth2) //First step to get all the media file is to handshake with Instagram API - returns code if(!isset($_REQUEST['code'])){ $obj->getInstagramCode($obj->client_id,$obj->redirect_url); } //once code is returned - authroise the API to get Token -this token will be used throughout the API request/response if(isset($_REQUEST['code'])){ $code = $_REQUEST['code']; //get token from Instagram $access_token = $obj->authorizeAPI($code,$obj->client_id,$obj->secret,$obj->redirect_url); //using token search media by username echo '<br>Search by Username<br>'; print_r($obj->getInstagramMediaByUsername($search_by_username,$access_token)); //using token search media by hashtag echo '<br>Search by Hashtag<br>'; print_r( $obj->getInstagramImagesByTag($search_by_tag,$access_token) ); } |
Files |
File | Role | Description |
---|---|---|
class.instagram_api_wrapper.php | Class | Instagram API Wrapper |
index.php | Example | Instagram API usage example |
readme.txt | Doc. | read me |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.