2

私はアプリケーションを作成しており、ユーザーに 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ログイン後にユーザーを直接ログインする方法は?

4

1 に答える 1

2

既存のユーザー インスタンスをアプリケーションにログインする必要がある場合は、インスタンスで login メソッドを呼び出すだけです。

$user = User::find(1);

Auth::login($user);

これは、試行メソッドを使用して資格情報を介してユーザーにログインすることと同じです。

詳細については、http: //laravel.com/docs/security#manuallyを参照してください。

于 2014-08-21T20:46:40.073 に答える