2017 © Pedro Peláez
 

library laravel-oauth2-greenhouse

A Laravel 5.2 service provider for league/oauth2-greenhouse

image

krdinesh/laravel-oauth2-greenhouse

A Laravel 5.2 service provider for league/oauth2-greenhouse

  • Wednesday, October 11, 2017
  • by krdinesh
  • Repository
  • 1 Watchers
  • 0 Stars
  • 144 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 1 % Grown

The README.md

krdinesh/laravel-oauth2-greenhouse

krdinesh/laravel-oauth2-greenhouse is a Laravel 5.2 service provider for krdinesh/oauth2-greenhouse., (*1)

Installation

The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to your project's composer.json:, (*2)

composer require krdinesh/laravel-oauth2-greenhouse

After requiring the package with Composer, you'll need to add the following to the providers array in config/app.php:, (*3)

``` php Krdinesh\Laravel\OAuth2\Greenhouse\GreenhouseServiceProvider::class, (*4)


Then, add the following to the `aliases` array in the same file: ``` php 'Greenhouse' => Krdinesh\Laravel\OAuth2\Greenhouse\Facades\Greenhouse::class

Now, run the following to properly set up the package with your Laravel application:, (*5)

``` bash php artisan vendor:publish, (*6)


Finally, Add your client ID, client secret, and redirect URI to `config/greenhouse.php`. ## Examples Create an authorization URL and redirect users to it in order to request access to their Greenhouse account: ``` php $authUrl = Greenhouse::authorize([], function ($url, $provider) use ($request) { $request->session()->put('greenhouseState', $provider->getState()); return $url; }); return redirect()->away($authUrl);

In the route for the redirect URI, check the state and authorization code, and use the code to get an access token. Store the token to the session or to the user's profile in your data store., (*7)

``` php if (!$request->has('state') || $request->state !== $request->session()->get('greenhouseState')) { abort(400, 'Invalid state'); }, (*8)

if (!$request->has('code')) { abort(400, 'Authorization code not available'); }, (*9)

$token = Greenhouse::getAccessToken('authorization_code', [ 'code' => $request->code, ]);, (*10)

$token->getToken(); ```, (*11)

The krdinesh/laravel-oauth2-greenhouse library is copyright ©Dinesh kumar and licensed for use under the MIT License (MIT). Please see LICENSE for more information., (*12)

The Versions

11/10 2017

dev-develop

dev-develop

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

11/10 2017

dev-master

9999999-dev

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

11/10 2017

v1.0.1

1.0.1.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

29/09 2017

v1.0.0

1.0.0.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

17/07 2017

v1.0.5

1.0.5.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

17/07 2017

v1.0.3

1.0.3.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

17/07 2017

v1.0.2

1.0.2.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse

12/07 2017

v1.0

1.0.0.0

A Laravel 5.2 service provider for league/oauth2-greenhouse

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar krdinesh

laravel oauth2 laravel 5.2 greenhouse