bokbasen/php-sdk-auth
最新稳定版本:v3.0.1
Composer 安装命令:
composer require bokbasen/php-sdk-auth
包简介
PHP SDK for Bokbasen API authentication service
README 文档
README
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.
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.
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.
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.
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.
$ composer require php-http/guzzle6-adapter
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.
<?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 } ?>
Use injected HTTP client
<?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 } ?>
bokbasen/php-sdk-auth 适用场景与选型建议
bokbasen/php-sdk-auth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 25.6k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2016 年 10 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 bokbasen/php-sdk-auth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bokbasen/php-sdk-auth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 25.6k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 6
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-14