1

GApps の顧客に関する情報を収集するために、いくつかの Web ページを作成しようとしています。

Oauth トークンを取得するために必要なすべてのコードがあり、動作しているようにも見えます (少なくとも、カレンダー API を使用してすべてのカレンダー イベントを読み取ることができます)。再販業者の API にアクセスしようとすると、トークンを取得できますが、 userinfoにアクセスしようとすると、 access_token パラメータを渡してInvalid Credentialsエラーが発生します。

残念ながら、PHP に関する有用なドキュメントはあまり見つかりませんでしたが、すべての認証手順の後、CURL 経由でデータを取得しようとしています...

何が間違っているのか、どうすればいいのか?


まだ立ち往生しているので、現在実行しているコードを追加すると思いました:

<?php
require_once '../google-api-php-client/src/Google_Client.php';
require_once '../google-api-php-client/src/contrib/Google_Oauth2Service.php';
require_once '../google-api-php-client/src/contrib/Google_ResellerService.php';
session_name('reseller');
session_start();

$debug=1;

$clientId='******.apps.googleusercontent.com';
$clientSecret='******';
$redirectURI='*****'; //links to the directory wehere the script is
$key='********';
$scopes='https://www.googleapis.com/auth/apps.order.readonly';
n
$client = new Google_Client();
$client->setApplicationName("Google Reseller PHP Starter Application");

$client->setClientId($clientId);
$client->setClientSecret($clientSecret);
$client->setRedirectUri($redirectURI);
$client->setDeveloperKey($key);
$client->setScopes($scopes);

if (isset($_GET['code'])) {
if($debug)  echo "we have a code! <br />";

  $client->authenticate($_GET['code']);
  $_SESSION['token'] = $client->getAccessToken();
  //echo $_SESSION['token']."<br/>";
  $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
  header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
  exit();
}

if (isset($_SESSION['token'])) {
  $client->setAccessToken($_SESSION['token']);
echo "access token settato<br/>";
}

if ($client->getAccessToken()) {
  $mytoken=json_decode($_SESSION['token'], true);

  echo "DEBUG SESSION token:".$_SESSION['token']."<br />";
  echo "DEBUG token: ".$mytoken['access_token']."<br />";

  $domain='******'; //mydomain
  //key id defiend above
  $fields=array('customerId');
  $url="https://www.googleapis.com/oauth2/v1/userinfo/?access_token=".$mytoken['access_token'];

  echo $url."<br />";

  $ch = curl_init($url);
  $scopes&state=antani&access_type=online&approval_prompt=auto");
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_HEADER, 0);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Authorization: Bearer: '.$mytoken['access_token'],
    ));
  curl_setopt($ch, CURLOPT_REFERER, "*******"); //server URL
  $data = curl_exec($ch);
  curl_close($ch);

 $resellerService = new Google_ResellerService($client);

if ($debug){
echo "<pre>";
  print_r($data);
echo "</pre>";
}


} else {
  $authUrl = $client->createAuthUrl();
  print "<a class='login' href='$authUrl'>Connect Me!</a>";
}



if (isset($_GET['logout'])) {
  unset($_SESSION['token']);
}


session_destroy();
?>

「権限が不十分です」というエラーが引き続き表示される理由について何か考えはありますか?

ありがとう!

4

0 に答える 0