|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of Laravel Instagram. |
| 5 | + * |
| 6 | + * (c) Vincent Klaiber <[email protected]> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +return [ |
| 13 | + |
| 14 | + /* |
| 15 | + |-------------------------------------------------------------------------- |
| 16 | + | Default Connection Name |
| 17 | + |-------------------------------------------------------------------------- |
| 18 | + | |
| 19 | + | Here you may specify which of the connections below you wish to use as |
| 20 | + | your default connection for all work. Of course, you may use many |
| 21 | + | connections at once using the manager class. |
| 22 | + | |
| 23 | + */ |
| 24 | + |
| 25 | + 'default' => 'main', |
| 26 | + |
| 27 | + /* |
| 28 | + |-------------------------------------------------------------------------- |
| 29 | + | Instagram Connections |
| 30 | + |-------------------------------------------------------------------------- |
| 31 | + | |
| 32 | + | Here are each of the connections setup for your application. Example |
| 33 | + | configuration has been included, but you may add as many connections as |
| 34 | + | you would like. |
| 35 | + | |
| 36 | + */ |
| 37 | + |
| 38 | + 'connections' => [ |
| 39 | + |
| 40 | + 'main' => [ |
| 41 | + 'client_id' => env('INSTAGRAM_CLIENT_ID'), |
| 42 | + 'client_secret' => env('INSTAGRAM_CLIENT_SECRET'), |
| 43 | + 'callback_url' => env('INSTAGRAM_CALLBACK_URL'), |
| 44 | + ], |
| 45 | + |
| 46 | + 'alternative' => [ |
| 47 | + 'client_id' => 'your-client-id', |
| 48 | + 'client_secret' => null, |
| 49 | + 'callback_url' => null, |
| 50 | + ], |
| 51 | + |
| 52 | + ], |
| 53 | + |
| 54 | +]; |
0 commit comments