altelma/laravel-hydra
Composer 安装命令:
composer require altelma/laravel-hydra
包简介
Hydra API client for Laravel
README 文档
README
Laravel Hydra is a package that provides Client API for Hydra support Laravel and following the newest of PHP version.
What is Hydra?
Hydra is an OAuth 2.0 and OpenID Connect Provider. In other words, an implementation of the OAuth 2.0 Authorization Framework as well as the OpenID Connect Core 1.0 framework. As such, it issues OAuth 2.0 Access, Refresh, and ID Tokens that enable third-parties to access your APIs in the name of your users.
Inspiration ❤️❤️❤️
This is not the official Ory Hydra SDK for php. If you want to use the official SDK, please use the official Ory Hydra SDK
Installation
composer require altelma/laravel-hydra
Usage
Create OAuth Client
// Create OAuth Client
$adminApi = new AdminApi();
$adminApi->createOAuth2Client([
"client_id" => "my-client-id",
"client_name" => "My Client ID",
"client_secret" => Str::random(32),
"scope" => "offline offline_access openid phone email profile",
"owner" => "Your company or your 3rd",
"client_uri" => "https://your-company.com",
"logo_uri" => "https://your-client-app.com/logo.png",
"redirect_uris" => [
"http://localhost:8000/hydra/callback",
],
"grant_types" => [
"authorization_code|refresh_token"
],
"response_types" => [
"code|id_token"
],
]);
Token Verification
// Example in middleware
public function __construct(private AdminApi $oauthAdminApi)
{
}
public function handle(Request $request, Closure $next)
{
$token = $request->bearerToken();
$tokenVerification = $this->oauthAdminApi->introspectOAuth2Token($token)->active;
if (!$tokenVerification) {
throw new UnauthorizedHttpException('Bearer', 'Invalid access token');
}
return $next($request);
}
Reference
HTTP API Documentation: https://www.ory.sh/hydra/docs/reference/api
สนับสนุนผมได้นะ ☕
สวัสดีเพื่อนๆ ทุกคนนะครับ หากมีข้อเสนอแนะอะไร แนะนำมาได้นะครับ นอกจากนี้ เพื่อนๆ สามารถแวะไปอ่านบทความของผมเพิ่มเติมได้ ที่นี่ ครับ
Bug Report
This package is not perfect right, but can be improve together. If you found bug or have any suggestion. Send that to me or new issue. Thank you to use it.
altelma/laravel-hydra 适用场景与选型建议
altelma/laravel-hydra 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13.1k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2022 年 02 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「rest」 「api」 「OpenId」 「oauth」 「sdk」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 altelma/laravel-hydra 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 altelma/laravel-hydra 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 altelma/laravel-hydra 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Api bundle
Alfabank REST API integration
A Flickr wrapper to allow you to call the Flickr api with Guzzle as the backend.Goal is to have 100% Flickr api coverage rather than just upload/display photos (currently at 23%).
BlockCypher's PHP SDK for REST API
Helper classes for creating cookie headers
统计信息
- 总下载量: 13.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-11
