Google Contacts API と対話し、認証されたユーザーの連絡先リストを取得する必要がある Web アプリを構築していますが、取得しています
ClientException in RequestException.php line 89:
Client error response [url] https://www.google.com/m8/feeds/contacts/ambermphatic@gmail.com/full?prettyPrint=false [status code] 403 [reason phrase] Forbidden
getContactList 関数を含めた AuthenticateUser.php を次に示します。Google サーバーに Guzzle リクエストを送信しようとしており、セッション変数に保存して正しいアクセス トークンを送信することができましたが、まだ禁止されています。応答 :
<?php
namespace App;
use Laravel\Socialite\Contracts\Factory as Socialite;
use App\Repositories\UserRepository;
use Illuminate\Contracts\Auth\Guard;
class AuthenticateUser {
/**
* @var UserRepository
*/
private $users;
/**
* @var Socialite
*/
private $socialite;
/**
* @var Guard
*/
private $guard;
private $token;
public function __construct(UserRepository $users, Socialite $socialite, Guard $guard)
{
$this->users = $users;
$this->socialite = $socialite;
$this->guard = $guard;
}
/**
* @param $hasCode
* @param AuthenticateUserListener $listener
* @return mixed
*/
public function execute($hasCode, AuthenticateUserListener $listener)
{
if ( ! $hasCode ) return $this->getAuthorizationFirst();
$var = $this->getGoogleUser();
$user = $this->users->findByUsernameOrCreate($var);
\Session::put('token', $var->token );
\Auth::login($user, true);
return $listener->userHasLoggedIn($user);
}
public function logout()
{
\Auth::logout();
return redirect('/');
}
private function getAuthorizationFirst()
{
return \Socialize::with('google')->redirect();
}
private function getGoogleUser()
{
return \Socialize::with('google')->user();
}
public function getContactList()
{
$client = new \GuzzleHttp\Client();
$email = \Auth::user()->email;
$token = \Session::get('token');
$json = $client->get('https://www.google.com/m8/feeds/contacts/'. $email . '/full', [
'query' => [
'prettyPrint' => 'false',
],
'headers' => [
'Accept' => 'application/json',
'Authorization' => 'Bearer ' . $token ,
],
]);
dd($json);
return $json;
}
}
これが私のAuthController.phpです
<?php namespace App\Http\Controllers;
use App\AuthenticateUser;
use App\AuthenticateUserListener;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Laravel\Socialite\Two\GoogleProvider as Google;
use Illuminate\Http\Request;
class AuthController extends Controller implements AuthenticateUserListener
{
public function login(AuthenticateUser $authenticateUser, Request $request){
return $authenticateUser->execute($request->has('code'), $this);
}
public function userHasLoggedIn($user)
{
return redirect('/');
}
public function logout(AuthenticateUser $authenticateUser){
return $authenticateUser->logout();
}
public function getContactList(AuthenticateUser $authenticateUser)
{
$response = $authenticateUser->getContactList();
dd($response);
}
}
ここに私のMainController.phpがあります
<?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class MainController extends Controller {
public function index()
{
if (\Auth::check()) return redirect('google_welcome');
return redirect('google_login');
}
public function first()
{
return view('google_login');
}
public function back()
{
$user = \Auth::user();
return view('google_welcomeback')->with('user', $user);
}
}
私はPHPとLaravelの世界にかなり慣れていません.oAuth 2を使用しているsocialiteなどのGoogle APIとパッケージをすぐに使用しようとしています.私は自分の限られた知識を最大限に活用するのに本当に苦労しており、実際には見つけていません.多くのドキュメントがオンラインにあり、問題は私の雇用主が、これをできるだけ早く完了しなければならないとほのめかしたことです...