我想在我的cakePHP应用程序中使用Google OAuth,让用户使用他们的Google帐户登录.我查看了以下组件:http://code.42dh.com/oauth/.不知何故,我无法让它起作用.我不知道我做错了什么.我在Google注册表上注册了我的申请,并获得了我的消费者密钥和消费者密钥.我在消费者组件中添加了它.我仍然没有得到它的工作.
这是我的代码:
<?php
class ExampleController extends AppController {
public $uses = array();
var $helpers = array('Javascript', 'Ajax');
public $components = array('OauthConsumer');
public function google() {
$scope = "https://www.google.com/m8/feeds/";
$REQUEST_TOKEN_URL = 'https://www.google.com/accounts/OAuthGetRequestToken?scope=' . urlencode($scope);
$requestToken = $this->OauthConsumer->getRequestToken('Google', $REQUEST_TOKEN_URL, 'http://mydomain.com/example/google_callback');
$this->Session->write('google_request_token', $requestToken);
$this->redirect('https://www.google.com/accounts/OAuthAuthorizeToken?oauth_token=' . $requestToken->key);
}
public function google_callback() {
$requestToken = $this->Session->read('google_request_token');
$accessToken = $this->OauthConsumer->getAccessToken('Google', 'https://www.google.com/accounts/OAuthGetAccessToken', $requestToken);
}
}
?>
Run Code Online (Sandbox Code Playgroud)
当我尝试请求requestToken时,我得到了答案:"签名无效".
有人在他们的cakePHP应用程序中使用Google OAuth,是否愿意给我一些提示?
我认为问题是请求令牌网址中的查询字符串.请尝试以下方法:
$REQUEST_TOKEN_URL = 'https://www.google.com/accounts/OAuthGetRequestToken';
$requestToken = $this->OauthConsumer->getRequestToken('Google', $REQUEST_TOKEN_URL, 'http://mydomain.com/example/google_callback', 'GET', array('scope' => 'https://www.google.com/m8/feeds'));
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6679 次 |
| 最近记录: |