janyksteenbeek / mollie-connect-oauth2
Mollie Connect OAuth 2.0 Client Provider for The PHP League OAuth2-Client
v1.0
2019-03-25 20:47 UTC
Requires
- php: >=5.6.0
- league/oauth2-client: ^2.0
README
This package provides Mollie Connect OAuth 2.0 support for the PHP League's OAuth 2.0 Client.
Installation
To install, use Composer:
composer require janyksteenbeek/mollie-connect-oauth2
You will need an Mollie account (referral link) and a registered application in order to use the Mollie Connect API.
Usage
Usage is the same as The League's OAuth client, using JanykSteenbeek\MollieConnect\OAuth2\Client\Provider\MollieConnect
as the provider.
Authorization Code Flow
<?php session_start(); $provider = new \JanykSteenbeek\MollieConnect\OAuth2\Client\Provider([ 'clientId' => '{mollie-connect-client-id}', 'clientSecret' => '{mollie-connect-client-secret}', 'redirectUri' => 'https://example.com/callback-url', ]); if (!isset($_GET['code'])) { // If we don't have an authorization code, we will fetch one from Mollie $authUrl = $provider->getAuthorizationUrl(); $_SESSION['oauth2_state'] = $provider->getState(); header('Location: ' . $authUrl); exit; // Check given state against previously stored one to mitigate CSRF attacks. } elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2_state'])) { unset($_SESSION['oauth2_state']); exit('Invalid state'); } else { // Try to get an access token (using the authorization code grant) $token = $provider->getAccessToken('authorization_code', [ 'code' => $_GET['code'] ]); // Optional: Now you have a token you can look up a organization's profile data try { // We got an access token, let's now get the organization's details $account = $provider->getResourceOwner($token); // Use these details to create a new profile printf('Welcome %s!', $account->getName()); } catch (Exception $e) { // Failed to get user details exit('Something went wrong fetching your organization details.'); } // Use this to interact with an API on the organization's behalf $mollieToken = $token->getToken(); }
Scopes
You can find a list of usable scopes here
Credits
License
The MIT License (MIT). Please see the License file for more information.