我一段时间以来一直在使用Google Admin SDK API创建组,并使用PHP cron作业自动从数据库中插入用户。一切正常。现在,我需要更改这些组的设置,但仍要使用Google Groups Settings API在同一cron作业上使用php。但是我收到“ 域无法使用API,未安装网上论坛服务”的401错误。我在Google admin中允许了范围https://www.googleapis.com/auth/apps.groups.settings,并在开发人员控制台中安装了API。我的代码:
function UpdateGroup($group)
{
$googleClient = function_to_connect_with_my_login();
$dir = new Google_Service_Groupssettings($googleClient);
$postBody = new Google_Service_Groupssettings_Groups(['description' => 'Description modified']);
try
{
$req = $dir->groups->update($group, $postBody);
return 'success'
} catch (exception $e) {
return 'error'.$e;
}
}
感谢您的帮助...