定制 martenb/google 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

martenb/google

Composer 安装命令:

composer require martenb/google

包简介

Ultra easy-to-use Google login wrapper for [`Nette Framework`](https://github.com/nette/).

README 文档

README

Inspired by https://github.com/contributte/facebook

Build Status Code coverage Licence Downloads this Month Downloads total Latest stable PHPStan

Content

Requirements

You need to create a Google project and supply these parameters:

  • clientId
  • clientSecret

Installation

extensions:
    google: MartenB\Google\DI\Nette\GoogleExtension
    
google:
    clientId: %yourClientId%
    clientSecret: %yourClientSecret%

Usage

Simple example how to use Google Login in Presenter

namespace App\Presenters;

use Google_Service_Oauth2;
use InvalidArgumentException;
use MartenB\Google\GoogleLogin;
use Nette\Application\Responses\RedirectResponse;
use Nette\Application\UI\Presenter;
use Nette\Security\AuthenticationException;

final class SignPresenter extends Presenter
{

    /** @var GoogleLogin @inject */
    public $googleLogin;


    public function actionGoogle()
    {
        // Redirect to Google and ask customer to grant access to his account
        $url = $this->googleLogin->getLoginUrl($this->link('//googleAuthorize'), [Google_Service_Oauth2::USERINFO_PROFILE, Google_Service_Oauth2::USERINFO_EMAIL]);
        $this->sendResponse(new RedirectResponse($url));
    }


    /**
     * Log in user with accessToken obtained after redirected from Google
     *
     * @param $code
     * @return void
     */
    public function actionGoogleAuthorize($code)
    {
        // Fetch User data from Google and try to login
        try {
            $token = $this->googleLogin->getAccessToken($this->link('//googleAuthorize'), $code);

            $this->user->login('google', $this->googleLogin->getMe($token));
            $this->flashMessage('Login successful :-).', 'success');

        } catch (InvalidArgumentException | AuthenticationException $e) {
            $this->flashMessage('Login failed. :-( Try again.', 'danger');

        }
    }

}

统计信息

  • 总下载量: 31
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-02-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固