photon/oauth2-server

OAuth 2 helper for photon

v1.1.1 2017-02-19 12:53 UTC

This package is auto-updated.

Last update: 2024-03-10 17:39:40 UTC


README

Build Status

Quick start

  1. Add the module in your project

    composer require "photon/oauth2-server:dev-master"

or for a specific version

composer require "photon/oauth2-server:1.0.0"
  1. Create a OAuth2 server class

You need to extends the abstract class "Server". This class perform automatics convertion for $request and $response object.

class MyOAuth2Server extends \photon\auth\oauth2\Server
{
    protected function initializeServer(&$server)
    {
        $storage = new \OAuth2\Storage\Mongo();
        $server->addStorage($storage);
        $server->addGrantType(new \OAuth2\GrantType\AuthorizationCode($storage));
        ...
    }
}

You can use this class like the original "\OAuth2\Server".

  1. Define your oauth server class in the project configuration

    'oauth_server' => '\foo\bar\MyOAuth2Server'

  2. Enjoy !