私はアプリケーションを作成しており、ユーザーに Google アカウントでログインしてもらいたいと考えています。ユーザー oauth-4-laravel があり、これがあります:
UserController.php
// get data from input
$code = Input::get('code');
// get google service
$googleService = Artdarek\OAuth\Facade\OAuth::consumer("Google");
if (!empty($code)) {
// This was a callback request from google, get the token
$token = $googleService->requestAccessToken($code);
// Send a request with it
$result = json_decode($googleService->request('https://www.googleapis.com/oauth2/v1/userinfo'), true);
$user = DB::select('select id from users where email = ?', array($result['email']));
if (empty($user)) {
$data = new User;
$data->Username = $result['name'];
$data->email = $result['email'];
$data->first_name = $result['given_name'];
$data->last_name = $result['family_name'];
$data->save();
}
if (Auth::attempt(array('email' => $result['email']))) {
return Redirect::to('/');
} else {
echo 'error';
}
}
// if not ask for permission first
else {
// get googleService authorization
$url = $googleService->getAuthorizationUri();
// return to facebook login url
return Redirect::to((string) $url);
}
}
この後、ユーザー情報を正常に取得し、データベースにユーザー名を保存できます。問題は、この後、ユーザーをホームページにリダイレクトしたいのですが、通常のログインで認証をチェックするため、これを行うことができないことです:
if (Auth::attempt(array('email' => Input::get('email'), 'password' => Input::get('password')))) {
return Response::json(["redirect_to" => "/"]);
Googleログインを使用すると、onluユーザー名、ユーザーID、および電子メールを取得できます。Googleログイン後にユーザーを直接ログインする方法は?