mauro-moreno / silex-instagram-provider
Silex Instagram 服务提供者
v1.0.0
2016-01-27 12:29 UTC
Requires
- cosenary/instagram: 2.*
Requires (Dev)
- phpunit/phpunit: >=5.1
- silex/silex: >=1
This package is auto-updated.
Last update: 2024-08-29 01:14:43 UTC
README
Silex Instagram 提供者
基于 Christian Metz Instagram PHP API V2 instagram-php-api.
安装
** 步骤 1: 下载服务提供者
使用 composer 安装,只需在终端中输入
$ composer require mauro-moreno/silex-instagram-provider
** 步骤 2: 启用服务提供者
要启用
<?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);