使用 Google Plus API 获取用户组织



我正在尝试从具有Google+ API或Google+ Domains API的用户那里获取组织。我正在按照官方文档的步骤进行操作,我使用的逻辑是这样的:

<?php session_start(); 
require_once 'vendor/autoload.php'; //INCLUDE PHP CLIENT LIBRARY
$scopes = array(
    "https://www.googleapis.com/auth/plus.profiles.read",         
    "https://www.googleapis.com/auth/plus.me"
);
// Create client object and set its configuraitons
$client = new Google_Client(); 
$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/');
$client->setAuthConfig("creds.json");
$client->addScope($scopes);
if( isset($_SESSION["access_token"]) ) {
    $client->setAccessToken($_SESSION["access_token"]);
    $service = new Google_Service_PlusDomains($client);
    $me = $service->people->get('me');
    var_dump($me);
    echo "<br><br>*********************************************<br><br>";
    $orgs = $me->getOrganizations(); // (THIS IS EMPTY!!!) ????
    var_dump($orgs);
} else {
    if( !isset($_GET["code"]) ){
        $authUrl = $client->createAuthUrl();
        header('Location: ' . filter_var($authUrl, FILTER_SANITIZE_URL));
    } else {
        $client->authenticate($_GET['code']);
        $_SESSION['access_token'] = $client->getAccessToken();
        $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/';
        header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
    }
}
?>

这非常适合我在Google+过渡到Google+域之前拥有的G-Suite帐户。当我在较新的 G Suite 帐户上使用相同的脚本时,它将无法正常工作。我尝试过$service = new Google_Service_Plus($client);,结果是一样的。知道为什么它不适用于较新的G Suite帐户吗?还有其他人有同样的问题吗?

好的。我找到了问题的根本原因。碰巧用户资源和人员资源是两种不同的资源。它们都具有"组织"属性,但用户资源的信息不会出现在您的Google Plus个人资料中,为了填充人员资源的"组织"属性,用户需要手动更新Google Plus中"关于我"页面的信息。目前,似乎无法以编程方式更新人员资源的信息,但用户必须手动执行此操作。

相关内容

  • 没有找到相关文章

最新更新