PHP code example of codfee / instagram

1. Go to this page and download the library: Download codfee/instagram library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

codfee / instagram example snippets


use CodFee\Instagram\Instagram;

// Create a new instagram instance.
$instagram = new Instagram('your-access-token');

// Fetch the user's recent media feed.
$instagram->get();

use CodFee\Instagram\Instagram;

$instagram = new Instagram('Your-ACCESS-TOKEN');

$instagram->get($table='users',$user='self',$condition='/media/recent');
default -> users/self/media/recent
$table = users,tags,media,locations
$instagram->getMediaById($id);
/media/$id?access_token=$token
bash
$ composer