guzzlehttp/oauth-subscriber
Composer 安装命令:
composer require guzzlehttp/oauth-subscriber
包简介
Guzzle OAuth 1.0 subscriber
README 文档
README
Signs HTTP requests using OAuth 1.0. Requests are signed using a consumer key, consumer secret, OAuth token, and OAuth secret.
This version works with Guzzle 7.13.3+ and PHP 7.2.5+.
Installing
This project can be installed using Composer. Add the following to your
composer.json:
{
"require": {
"guzzlehttp/oauth-subscriber": "^0.9.4"
}
}
Using the Subscriber
Here's an example showing how to send an authenticated request to the Twitter REST API:
use GuzzleHttp\Client; use GuzzleHttp\HandlerStack; use GuzzleHttp\Subscriber\Oauth\Oauth1; $stack = HandlerStack::create(); $middleware = new Oauth1([ 'consumer_key' => 'my_key', 'consumer_secret' => 'my_secret', 'token' => 'my_token', 'token_secret' => 'my_token_secret', ]); $stack->push($middleware); $client = new Client([ 'base_uri' => 'https://api.twitter.com/1.1/', 'handler' => $stack, ]); // Set the "auth" request option to "oauth" to sign using oauth $res = $client->get('statuses/home_timeline.json', ['auth' => 'oauth']);
You can set the auth request option to oauth for all requests sent
by the client by extending the array you feed to new Client with auth
=> oauth.
use GuzzleHttp\Client; use GuzzleHttp\HandlerStack; use GuzzleHttp\Subscriber\Oauth\Oauth1; $stack = HandlerStack::create(); $middleware = new Oauth1([ 'consumer_key' => 'my_key', 'consumer_secret' => 'my_secret', 'token' => 'my_token', 'token_secret' => 'my_token_secret', ]); $stack->push($middleware); $client = new Client([ 'base_uri' => 'https://api.twitter.com/1.1/', 'handler' => $stack, 'auth' => 'oauth', ]); // Now you don't need to add the auth parameter $res = $client->get('statuses/home_timeline.json');
You can override the token and token_secret values for an individual
request using the oauth request option. The auth request option must
still be set to oauth to enable signing for the request.
$res = $client->get('statuses/home_timeline.json', [ 'auth' => 'oauth', 'oauth' => [ 'token' => 'request_token', 'token_secret' => 'request_token_secret', ], ]);
Only token and token_secret are supported in the oauth request
option. Pass both values when switching to a different credential pair.
Do not pass OAuth credentials using Guzzle's array-based auth option,
which is reserved for Guzzle's built-in HTTP authentication handlers. If
you use custom retry middleware to refresh credentials, make sure retries
re-enter this middleware so each retry is signed with fresh OAuth
parameters. Custom middleware that runs before this middleware can still
see the oauth request option, so avoid logging request options that
contain secrets.
You can set the token and token_secret options to an empty string to
use two-legged OAuth.
Using the RSA-SH1 signature method
use GuzzleHttp\Subscriber\Oauth\Oauth1; $stack = HandlerStack::create(); $middleware = new Oauth1([ 'consumer_key' => 'my_key', 'consumer_secret' => 'my_secret', 'private_key_file' => 'my_path_to_private_key_file', 'private_key_passphrase' => 'my_passphrase', 'signature_method' => Oauth1::SIGNATURE_METHOD_RSA, ]); $stack->push($middleware); $client = new Client([ 'handler' => $stack, ]); $response = $client->get('https://httpbin.org/', ['auth' => 'oauth']);
guzzlehttp/oauth-subscriber 适用场景与选型建议
guzzlehttp/oauth-subscriber 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.49M 次下载、GitHub Stars 达 240, 最近一次更新时间为 2014 年 03 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「oauth」 「Guzzle」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 guzzlehttp/oauth-subscriber 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 guzzlehttp/oauth-subscriber 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 guzzlehttp/oauth-subscriber 相关的其它包
同方向 / 同关键字的高下载量 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.
Cloudflare Middleware For Guzzle
Simplifies working with holaluz API endpoints
统计信息
- 总下载量: 15.49M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 242
- 点击次数: 28
- 依赖项目数: 164
- 推荐数: 2
其他信息
- 授权协议: MIT
- 更新时间: 2014-03-18