2017 © Pedro Peláez
 

library php-sdk-auth

PHP SDK for Bokbasen API authentication service

image

bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  • Wednesday, August 30, 2017
  • by stadskle
  • Repository
  • 5 Watchers
  • 1 Stars
  • 584 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 6 Versions
  • 11 % Grown

The README.md

PHP SDK for Bokbasen authentication service

This PHP SDK enables easy usage of Bokbasen's authentication service that is required for accessing any of Bokbasen's API such as digital distribution platform, metadata or orders. Bokbasen's APIs are not public and only available on commercial terms, you must have a username/password from Bokbasen in order to use this package., (*1)

The basic package enable creation of a TGT that can be used for further login to API services. The package also provides an interface for caching TGTs so one can get a more efficient flow, only renewing TGT when it is about to expire. For production usage this is highly recommended. The API documentation is available on this page., (*2)

HTTP client

The SDK has a dependency on the virtual package php-http/client-implementation which requires to you install an adapter, but we do not care which one. That is an implementation detail in your application. We also need a PSR-7 implementation and a message factory., (*3)

This is based on PHP-HTTP that provides an implementation-independent plugin system to build pipelines regardless of the HTTP client implementation used. So basically you can plugin whichever HTTP implementation you would like to use., (*4)

I do not care, I just want it to work!

By adding a compatible HTTP adapter to your project the SDK will automatically detect the package and use this adapter. As long as you do not need any specific HTTP settings injected (such as proxy settings etc.) this will work just fine., (*5)

$ composer require php-http/guzzle6-adapter, (*6)

Auto detected client and TGT cache

In production environments you should always use teh caching feature. Not doing this will potentially give you a significant performance impact on the response time from Bokbasen's APIs. You can cache the TGT using any PSR-6 compatible package. Example below is using Symfony's file caching., (*7)

php <?php use Bokbasen\Auth\Login; use Symfony\Component\Cache\Adapter\FilesystemAdapter; try{ $cache = new FilesystemAdapter(); $auth = new Login('my_username', 'my_password', Login::URL_PROD, $cache); //If the TGT is cached, the SDK will only call the Bokbasen login server when the token is set to expire } catch(\Exception $e){ //error handling } ?>, (*8)

Use injected HTTP client

php <?php use Bokbasen\Auth\Login; try{ //just an example, any client implementing \Http\Client\HttpClient\HttpClient will work $client = new \Http\Adapter\Guzzle6\Client(); $auth = new Login('my_username', 'my_password', Login::URL_PROD, null, null, $client); } catch(\Exception $e){ //error handling } ?>, (*9)

The Versions

30/08 2017

dev-master

9999999-dev https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv

27/06 2017

v2.0.1

2.0.1.0 https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv

28/11 2016

v2.0.0

2.0.0.0 https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv

14/10 2016

v1.1.1

1.1.1.0 https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv

12/10 2016

v1.1.0

1.1.0.0 https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv

11/10 2016

v1.0.0

1.0.0.0 https://github.com/Bokbasen/php-sdk-auth

PHP SDK for Bokbasen API authentication service

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ketil Stadskleiv