opauth/google

Opauth 的 Google 认证策略

0.2.2 2012-10-18 14:39 UTC

This package is auto-updated.

Last update: 2024-09-13 10:26:41 UTC


README

Opauth 的 Google 认证策略。

基于 https://developers.google.com/accounts/docs/OAuth2 使用 OAuth 2.0 实现。

Opauth 是一个用于 PHP 的多提供者认证框架。

入门指南

  1. 安装 Opauth-Google

    cd path_to_opauth/Strategy
    git clone git://github.com/opauth/google.git Google

    composer require opauth/google
    
  2. https://code.google.com/apis/console/ 创建一个 Google APIs 项目

    • 您不需要在“服务”标签页启用任何服务。
    • 确保转到“API 访问”标签并创建一个 OAuth 2.0 客户端 ID。
    • 应用类型 设置为 Web 应用程序
    • 确保将重定向 URI 设置为实际的 OAuth 2.0 回调 URL,通常是 http://path_to_opauth/google/oauth2callback
  3. 配置 Opauth-Google 策略。

  4. 将用户直接导向 http://path_to_opauth/google 进行认证

策略配置

必需参数

<?php
'Google' => array(
	'client_id' => 'YOUR CLIENT ID',
	'client_secret' => 'YOUR CLIENT SECRET'
)

可选参数: scope, state, access_type, approval_prompt

参考

许可证

Opauth-Google 使用 MIT 许可证
版权 © 2012 U-Zyn Chua (http://uzyn.com)