(403) В запросе недостаточно областей проверки подлинности — OAuth ограничивает API Google Classroom

Я здесь новичок и я не программист, тогда мне нужна ваша помощь.

Я тестирую инструкции по управлению учителями и учениками, найденные здесь:
https://developers.google.com/classroom/guides/manage-users

Я попытался использовать аутентификацию и области, как они делают здесь в PHP QuickStart:
https://developers.google.com/classroom/quickstart/php

Я успешно запустил образец quickstart.php, тогда это означает, что композитор успешно установлен, но я просто не могу запустить код для // Зачисления студента в курс из-за недостаточных областей аутентификации.

Сообщение об ошибке:

Неустранимая ошибка: необработанное исключение ‘Google_Service_Exception’ с
сообщение «Ошибка вызова POST
h_ttps: //classroom.googleapis.com/v1/courses/559522327/students enrollmentCode = 2j1l21l:
(403) У запроса недостаточно областей аутентификации. ‘ в
C: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Http \ REST.php: 110
Трассировка стека: # 0
C: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Http \ REST.php (62):
Google_Http_REST :: decodeHttpResponse (Object (Google_Http_Request),
Объект (Google_Client)) # 1 [внутренняя функция]:
Google_Http_REST :: doExecute (Object (Google_Client),
Объект (Google_Http_Request)) # 2
C: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Task \ Runner.php (174):
call_user_func_array (Array, Array) # 3
C: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Http \ REST.php (46):
Google_Task_Runner-> run () # 4
C: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Client.php (593):
Google_Http_REST :: Execute (Object (Google_Client),
Объект (Google_Http_Request)) # 5 C: \ Pr
в Сп: \ ProgramData \ ComposerSetup \ Bin \ поставщика \ Google \ apiclient \ SRC \ Google \ Http \ REST.php
на линии 110

Попытайтесь адаптировать пример кода:

<?php

require __DIR__ . '/vendor/autoload.php';

define('APPLICATION_NAME', 'Classroom API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/classroom-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
define('SCOPES', implode(' ', array(
Google_Service_Classroom::CLASSROOM_ROSTERS)
));

if (php_sapi_name() != 'cli') {
//  throw new Exception('This application must be run on the command line.');
}

/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfigFile(CLIENT_SECRET_PATH);
$client->setAccessType('offline');

// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = file_get_contents($credentialsPath);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));

// Exchange authorization code for an access token.
$accessToken = $client->authenticate($authCode);

// Store the credentials to disk.
if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, $accessToken);
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);

// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->refreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, $client->getAccessToken());
}
return $client;
}

/**
* Expands the home directory alias '~' to the full path.
* @param string $path the path to expand.
* @return string the expanded path.
*/
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
if (empty($homeDirectory)) {
$homeDirectory = getenv("HOMEDRIVE") . getenv("HOMEPATH");
}
return str_replace('~', realpath($homeDirectory), $path);
}

// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Classroom($client);//Enroll the student in the course given below

$courseId = '559522327';
$enrollmentCode = '2j1l21l';
$student = new Google_Service_Classroom_Student(array(
'userId' => 'me',
));

$params = array(
'enrollmentCode' => $enrollmentCode
);

try {
$student = $service->courses_students->create($courseId, $student, $params);
printf("User '%s' was enrolled  as a student in the course with ID '%s'.\n",
$student->profile->name->fullName, $courseId);
} catch (Google_Service_Exception $e) {
if ($e->getCode() == 409) {
print "You are already a member of this course.\n";
} else {
throw $e;
}
}

?>

Это как-то связано с областями видимости и классами Google_Service_Classroom?

Я буду очень благодарен, если вы сможете мне помочь!

С уважением

0

Решение

Согласно документам, требуется одна из следующих областей:

  • https://www.googleapis.com/auth/classroom.rosters
  • https://www.googleapis.com/auth/classroom.profile.emails
  • https://www.googleapis.com/auth/classroom.profile.photos
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]