mauro-moreno/silex-instagram-provider

Silex Instagram service provider

v1.0.0 2016-01-27 12:29 UTC

This package is auto-updated.

Last update: 2024-02-29 00:11:39 UTC


README

Silex Instagram provider

Based on Christian Metz Instagram PHP API V2 instagram-php-api.

Installation

** Step 1: Download Service Provider

To install with composer just open a terminal and type:

$ composer require mauro-moreno/silex-instagram-provider

** Step 2: Enable Service Provider

To enable

<?php
$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);