impressolabs/laravel-sign-in-with-huawei
最新稳定版本:0.3.0
Composer 安装命令:
composer require impressolabs/laravel-sign-in-with-huawei
包简介
Add Huawei's new single-signon feature to your site with ease.
README 文档
README
Supporting This Package
Code base fork from https://github.com/GeneaLabs/laravel-sign-in-with-apple
This is an MIT-licensed open source project with its ongoing development made possible by the support of the community. If you'd like to support this, and our other packages, please consider sponsoring us via the button above.
https://medium.com/@starkliew/how-to-sign-in-using-huawei-id-with-laravel-336a2397b930
Table of Contents
Requirements
- PHP 7.2+
- Laravel 7+
- Socialite 4.2+
- Huawei Developer Account
Installation
- Install the composer package:
composer require impressolabs/laravel-sign-in-with-huawei
Configuration
Implementation
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use Laravel\Socialite\Facades\Socialite; class HuaweiSigninController extends Controller { public function __construct() { $this->middleware('guest')->except('logout'); } public function login() { return Socialite::driver("huawei") ->redirect(); } public function callback(Request $request) { // get abstract user object, not persisted $user = Socialite::driver("huawei") ->user(); } }
Credits
- https://github.com/GeneaLabs/laravel-sign-in-with-apple
- https://developer.huawei.com/consumer/en/doc/development/HMS-References/account-obtain-token
- https://forums.developer.huawei.com/forumPortal/en/topicview?tid=0201272938220820099&fid=0101187876626530001
- https://developer.huawei.com/consumer/en/doc/development/HMS-Plugin-References-V1/scope-0000001050728398-V1
统计信息
- 总下载量: 3.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-09-15