PHP code example of mauro-moreno / silex-instagram-provider

1. Go to this page and download the library: Download mauro-moreno/silex-instagram-provider 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/ */

    

mauro-moreno / silex-instagram-provider example snippets



$app = new Silex\Application;
$app['instagram.key'] = API_KEY;
$app['instagram.secret'] = API_SECRET;
$app['instagram.callback'] = API_CALLBACK;
$app->register(new MauroMoreno\SilexInstagram\SilexInstagramServiceProvider);