turanct/engagor-api
Composer 安装命令:
composer require turanct/engagor-api
包简介
PHP client for the Clarabridge Engage API
README 文档
README
Install
Via Composer
$ composer require turanct/engagor-api
Or manually add turanct/engagor-api to your composer.json and run composer install.
Usage
Setting up
For this library to work, you'll need a PSR-7, PSR-17 and PSR-18 implementation. It doesn't really matter which ones, but an easy way to get started is to use these in your composer.json and then run composer install.
"nyholm/psr7": "^1.2.0", "kriswallsmith/buzz": "^1.0.1",
In this case PSR-7 and PSR-17 implementations are provided by nyholm/psr7 and the PSR-18 implementation is kriswallsmith/buzz.
Authentication
Create an Authentication instance:
$httpRequestFactory = new Nyholm\Psr7\Factory\Psr17Factory(); $httpClient = new Buzz\Client\Curl($httpRequestFactory); $clientId = '<CLIENT ID HERE>'; $clientSecret = '<CLIENT SECRET HERE>'; $authentication = new Engagor\Authentication( $httpClient, $httpRequestFactory, $clientId, $clientSecret );
Once you have created this instance, you can use it to authenticate the user of your app with Engage:
$url = $authentication->step1( [ 'identify', 'accounts_read', 'accounts_write', 'socialprofiles', 'email', ], '<RANDOM STATE HERE>' );
This will return an array that you can redirect your users too. Insert a random state, and save it in the user's session so that you can verify later on that the redirect URL that the user will be sent to is valid.
That redirect URL will look a bit like this:
https://example.com/your-redirect-url?state=<RANDOM STATE HERE>&code=<YOUR AUTH CODE>
You should verify the state to be the same that you generated when you called step1() to create the redirect URL in the previous step. If that check succeeds, the code that's also in the request to your redirect endpoint is what you'll need for the next step:
$tokens = $authentication->step2('<YOUR AUTH CODE>');
If it's successful, you should get a Tokens object, which holds the access & refresh tokens that we can use to issue calls to the Engage api.
Making authenticated requests to the API
Now that you've obtained a Tokens object, you can create a Client instance:
$client = new Engagor\Client( $httpClient, $httpRequestFactory, $tokens );
The $httpClient and $httpRequestFactory can be the same instances as described in the Authentication step above.
Now that you've got an API $client instance, you can either call the implemented API methods using the methods with their name, e.g. /me will be called me(), or you can use the request() method to manually make requests to the API.
$me = $client->me();
or
$request = $httpRequestFactory->createRequest( 'GET', 'https://api.engagor.com/me/' ); $response = $client->execute($request);
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
turanct/engagor-api 适用场景与选型建议
turanct/engagor-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 91 次下载、GitHub Stars 达 2, 最近一次更新时间为 2019 年 09 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「oauth」 「engage」 「engagor」 「clarabridge」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 turanct/engagor-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 turanct/engagor-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 turanct/engagor-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
WeChat OAuth SDK
Ory-Hydra OAuth 2.0 Client Provider for The PHP League OAuth2-Client
Library for ORCID web services
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
A PSR-7 compatible library for making CRUD API endpoints
LiveEngage package for laravel
统计信息
- 总下载量: 91
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-01