smorken/oauth1
Composer 安装命令:
composer require smorken/oauth1
包简介
OAuth 1 library, build specifically for Brainfuse
README 文档
README
OAuth1 package
This library is built specifically for use with Brainfuse. It may not have all of the functionality necessary for a complete OAuth service call. But it might if you are creative!
Laravel
Adding to your composer.json should auto-register the service provider, if not:
- Add
\Smorken\OAuth1\ServiceProviderto theconfig/app.phpservice providers
- Add
If needed, publish the config
php artisan vendor:publish --provider="Smorken\OAuth1\ServiceProvider" --tag=config
Environment variables are available for most options in the config (.env)
Factory
$factory = app(\Smorken\OAuth1\Contracts\Factory::class);
Use
The whole process is as follows (Request Token):
$uri = 'http://term.ie/oauth/example/request_token.php';
$opts = [
'user_id' => 'abcd',
'lis_person_name_fname' => 'Fname',
'lis_person_name_lname' => 'Lname',
'lis_person_contact_email_primary' => 'email@example.com',
'oauth_consumer_key' => 'key,
];
$signer = new Signature(new \Smorken\OAuth1\Hashers\HmacSha1('secret'));
$params = new Params(new Nonce());
$client = new \Smorken\OAuth1\Clients\Guzzle(new \GuzzleHttp\Client());
$factory = new OauthFactory(new Authorization(), $client, $params, $signer);
$resp = $factory->post($uri, $opts, ['debug' => true]);
// OR
//$resp = $factory->get($uri, $opts);
// OR
//$resp = $factory->authorizationHeader($uri, $opts, 'POST');
echo $resp->getBody() . PHP_EOL;
You can also manually follow the steps in the Factory if the defaults don't do what you need.
Example of building a request manually
$uri = 'http://term.ie/oauth/example/request_token.php';
$opts = [
'user_id' => 'abcd',
'lis_person_name_fname' => 'Fname',
'lis_person_name_lname' => 'Lname',
'lis_person_contact_email_primary' => 'email@example.com',
'oauth_consumer_key' => 'key,
];
$signer = new Signature(new \Smorken\OAuth1\Hashers\HmacSha1('secret'));
$params = new Params(new Nonce());
$client = new \Smorken\OAuth1\Clients\Guzzle(new \GuzzleHttp\Client());
$request = new \GuzzleHttp\Psr7\Request(
'POST',
$uri,
['Content-Type' => 'application/x-www-form-urlencoded'],
$params->sign($signer, $uri, 'POST')->toQueryString()
);
$resp = $client->send($request);
echo $resp->getBody() . PHP_EOL;
smorken/oauth1 适用场景与选型建议
smorken/oauth1 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 205 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 06 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 smorken/oauth1 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 smorken/oauth1 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 205
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-28