我已经使用g suite account创建了一个应用程序。使用google client API,我可以使用我的g套件帐户将数据发布到google plus页面上。没关系。但我需要将数据发布到Google加页普通gmail帐户上。当我尝试使用正常的test.gmail.com发布数据时。它提供了以下错误。
(出了点问题:调用POST时出错 https://www.googleapis.com/plusDomains/v1/people/me/activities :( 403) 禁止)。但是Hootsuite网站我可以在Google Plus上发布数据 通过使用普通的gmail帐户。我需要购买其他东西吗 例如(g套件帐户)。
参考链接:-
https://github.com/google/google-api-php-client
我的范围:
$client>addScope("https://www.googleapis.com/auth/plus.circles.read");
$client->addScope("https://www.googleapis.com/auth/plus.circles.write");
$client->addScope("https://www.googleapis.com/auth/plus.login");
$client->addScope("https://www.googleapis.com/auth/plus.me");
$client->addScope("https://www.googleapis.com/auth/plus.media.upload");
$client->addScope("https://www.googleapis.com/auth/plus.profiles.read");
$client->addScope("https://www.googleapis.com/auth/plus.stream.read");
$client->addScope("https://www.googleapis.com/auth/plus.stream.write");
$client->addScope("https://www.googleapis.com/auth/activity");
还是我应该使用更多范围?