harrygulliford/socialite-microsoft-graph
Composer 安装命令:
composer require harrygulliford/socialite-microsoft-graph
包简介
Microsoft Graph Provider for Laravel Socialite
README 文档
README
This package extends Laravel Socialite to give a convenient method of authenticating via the Microsoft Graph OAuth2 provider.
Support for Laravel 11, 12 and 13, Socialite 5+, and PHP 8.2+.
Installation
You can install the package via composer:
composer require harrygulliford/socialite-microsoft-graph
Then add the service to your config/services.php file:
'microsoft-graph' => [
'client_id' => env('MS_GRAPH_KEY'),
'client_secret' => env('MS_GRAPH_SECRET'),
'tenant_id' => env('MS_GRAPH_TENANT_ID', 'common'),
'redirect' => env('MS_GRAPH_REDIRECT_URL'),
],
Usage
You are able to use the provider in the same manner as a regular Socialite provider.
return Socialite::with('microsoft-graph')->redirect();
For more information, please refer to the Laravel Socialite documentation.
License
The MIT License (MIT). Please see the license file for more information.
统计信息
- 总下载量: 5.38k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-04