我是新来的,我不是程序员,那我需要你的帮助。
我正在测试说明管理老师和学生在这里找到:https://developers.google.com/classroom/guides/manage-users
我尝试使用身份验证和作用域,就像在PHP QuickStart中一样:https://developers.google.com/classroom/quickstart/php
我成功运行了quickstart.php示例,这意味着composer已成功安装,但由于身份验证范围不足,我无法运行代码//在课程中注册学生。
错误消息:
致命错误:未捕获异常“Google\u服务\u异常”,消息为“调用POST h时出错”_ttps://classroom.googleapis.com/v1/courses/559522327/students?enrollmentCode=2j1l21l: (403)请求的身份验证作用域不足。在C:\ProgramData\Composer Setup\bin\vendor\google\apiclient\src\google\Http\REST.php:110堆栈跟踪:#0 C:\ProgramData\Composer Setup\bin\vendor\google\apiclient\src\google\Http\REST.php(62):google\U Http\U REST::decodeHttpResponse(对象(google\U Http\U请求),对象(google\U客户端))#1[内部函数]:Google_Http_REST::doExecute(对象(Google_客户端)、对象(Google_Http_请求))\2c:\ProgramData\Composer设置\bin\vendor\Google\apiclient\src\Google\Task\Runner.php(174):调用\u user\u func\u数组(数组,数组)\3c:\ProgramData\Composer设置\bin\vendor\Google\apiclient\src\Google\Http\REST.php(46):Google\u任务运行程序-
尝试调整示例代码:
<?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;
}
}
?>
这和scopes和谷歌服务课堂有关?
如果你能帮助我,我会非常感激的!
当做
您的应用程序请求没有身份验证作用域。访问数据需要作用域。根据您的需求选择范围。
以下是Classroom API的OAuth 2.0范围信息:https://developers.google.com/classroom/guides/auth?hl=en
根据文件,需要以下范围之一:
https://www.googleapis.com/auth/classroom.rosters
https://www.googleapis.com/auth/classroom.profile.emails
https://www.googleapis.com/auth/classroom.profile.photos
null 所用程序: 获取身份验证响应后创建Google analytics service对象。/li> 脚本: null
我第一次尝试使用Google Firestore,通过Google api身份验证进行身份验证。我要做的第一件事是用几个方法来填充数据库,当我等待批处理任务时,会出现以下错误: 我几乎找不到谷歌认证连接firestore的方法。首先,我使用google console为我的应用程序提供的密码使用此方法进行身份验证: 使用在我的google控制台中为应用程序配置的相同作用域(我在同一应用程序中使用g
这是我为Google Sheets API编写的代码。我有这是我找到的解决此问题的方法,但这并不能解决我的问题。我已经删除了我的.Credentials文件夹,它不提示我登录。
我正试着从我的swift项目中写到谷歌表单。 现在,我遇到的问题是,当我运行该代码试图写入工作表时,我得到的响应是这样的(工作表ID被我故意删除了): 在进一步研究中,我还发现了这一点,我认为这将解决我的问题,但当我尝试添加时,它告诉我中找不到'kGTLRAuthScopeSheetsSpreadsheets'。 我觉得在这一点上,我被困在我下一步可以尝试的东西上了。如有任何建议,不胜感激!
我正在尝试从我的谷歌驱动器下载一个电子表格。我正在遵循这个参考,并且在权限方面有问题。我从https://www.googleapis.com/auth/drive.file开始,得到了这个 阅读权限文档可以阅读以下内容https://www.googleapis.com/auth/drive. 访问用户所有文件(不包括应用程序数据文件夹)的完整许可范围。 但即使使用这个范围,我仍然得到相同的错误