Laravel 4 (MVC フレームワーク) を使用して、Google Plus サインインを機能させようとしています。
現在、次の2つの方法がhome
ありconnect
ます。
public function home()
{
$state = md5(rand());
Session::put('state', $state);
$data = array (
'CLIENT_ID' => 'my client id',
'STATE' => $state,
'APPLICATION_NAME' => 'API Test'
);
return View::make('home')
->with($data);
}
これにより、変数を含むメインの「ホーム」ビューが作成されます。
ここには、必要なスクリプトとボタンがあります。
<div id="test"></div>
<div id="signinButton">
<span class="g-signin"
data-scope="https://www.googleapis.com/auth/plus.login"
data-clientid="{{ $CLIENT_ID }}"
data-redirecturi="postmessage"
data-accesstype="offline"
data-cookiepolicy="single_host_origin"
data-callback="signInCallback">
</span>
</div>
次に、signInCallback 関数をロードします。
function signInCallback(authResult) {
if (authResult['code']) {
// Hide the sign-in button now that the user is authorized, for example:
$('#signinButton').attr('style', 'display: none');
var dataString = 'auth= ' +authResult['code'];
// Send the code to the server
$.ajax({
type: 'POST',
url: 'connect',
dataType: 'html',
data: dataString,
processData: false,
statusCode: {
200: function(result){
$('#test').html(result);
}
},
});
} else if (authResult['error']) {
console.log('There was an error: ' + authResult['error']);
}
}
これはすべて機能しています。
接続メソッドが認証コードを受け取る方法と、これを必要なトークンと交換したい:
public function connect()
{
$client = new Google_Client();
$client->setApplicationName('API Test');
$client->setClientId('my client id');
$client->setClientSecret('my client secret');
$client->setRedirectUri('postmessage');
// Get auth code - this works
$code = Input::get('auth');
$client->authenticate($code);
$token = json_decode($client->getAccessToken());
return "Token: $token";
}
ただし、これは 500 内部サーバー エラーを返します$client->authenticate($code);
。誰でもこれを手伝ってもらえますか?ドキュメントが非常にわかりにくいと思います。