Google認証でログインしようとするとエラーが表示されます。私はハイブリッド認証を使用しています。 HTTP
での作業ですが、HTTPS
で作業していません。解決方法Googleソーシャルログインでユーザープロフィールのリクエストに失敗しました
User profile request failed. Most likely the user is not connected to the provider and he should authenticate again. Ooophs, we got an error: User profile request failed! Google returned an error: exception 'Exception' with message 'The Authorization Service has return
コード
$hybridauth = new Hybrid_Auth($setting);
$provider = $hybridauth->authenticate($this->session->data['provider']);
//get the user profile
$profile = $provider->getUserProfile();
$this->register($this->session->data['provider'], (array)$profile);
HybridAuthでこの問題も発生しています –