3

我目前正在为我的网站开发一个 OAuth 身份验证系统,该系统允许用户通过 Google API 登录。

我正在使用 Codeigniter 2.0.2 并且我没有在我的服务器上编译 PECL OAuth,所以我不得不使用原始 php 来执行此操作。

我已经使用 Google 对用户进行身份验证,并取回了该用户的oauth_tokenoauth_token_secret

但是在无休止地阅读协议之后,我仍然无法找到oauth_keyoauth_token_secret如何访问其他 API 以收集以下信息:

  • 电子邮件地址
  • 个人资料图片
  • 全名
  • 地点

这是我用来验证的当前代码:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class OAuth extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();

        $this->load->library('google_oauth',array(
            'key'       => '*REMOVED*',
            'secret'    => '*REMOVED*',
            'algorithm' => 'HMAC-SHA1'
        ));
    }

    public function login()
    {
        //Get Request Token
        $response = $this->google_oauth->get_request_token(
            site_url("/oauth/collect"),
            'http://www.google.com/m8/feeds/'
        );

        //Store temp
        $this->session->set_flashdata('g.token.secret', $response['token_secret']);

        //Redirect
        redirect($response['redirect']);
    }

    public function collect()
    {
        $token_s = $this->session->flashdata('g.token.secret');
        if(!$token_s)
        {
            $this->session->set_flashdata('error','Invalid auth session data, please rety your login');
            redirect();
        }

        $oauth = $this->google_oauth->get_access_token(false, $token_s);

        /*Check the data is valid*/
        if(!isset($oauth['oauth_token']) || !isset($oauth['oauth_token_secret']))
        {
            $this->session->set_flashdata('error','Unable to authecticate securly with Google, please try again');
            redirect();
        }

        $token = $oauth['oauth_token'];
        $secret = $oauth['oauth_token_secret'];

        //Will Store Here
    }
}

我目前正在使用这个身份验证类的稍微修改过的版本:

https://github.com/jimdoescode/CodeIgniter-YouTube-API-Library/blob/master/application/libraries/google_oauth.php

4

1 回答 1

2

您是否尝试过使用Google OAuth Playground进行试验?它对于确定您可以访问哪些 API 提要和构建有效的请求字符串很有用。

以下是您可以访问的 Google API 列表:Google API 目录

希望有帮助

于 2011-08-26T07:47:39.783 回答