我目前正在为我的网站开发一个 OAuth 身份验证系统,该系统允许用户通过 Google API 登录。
我正在使用 Codeigniter 2.0.2 并且我没有在我的服务器上编译 PECL OAuth,所以我不得不使用原始 php 来执行此操作。
我已经使用 Google 对用户进行身份验证,并取回了该用户的oauth_token和oauth_token_secret。
但是在无休止地阅读协议之后,我仍然无法找到oauth_key和oauth_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
}
}
我目前正在使用这个身份验证类的稍微修改过的版本: