1

How do I see a list of my Google+ activities through the API? I couldn't find a method in the API Explorer.

4

2 回答 2

1

这是API Explorer 的链接,其中配置了活动列表以显示您的所有活动。

由于meuserId 是您的私人数据,您需要点击屏幕右上角的 OAuth 2.0 开关并授权 API Explorer 知道您在 Google+ 上的身份,然后再提交查询。

于 2012-04-27T20:42:19.717 回答
0

如果您使用的是 PHP,以及Google 提供的 php 客户端库,它看起来像这样:

$collection = 'public';
$client = new apiClient();
$client->setDeveloperKey($api_key);
$plus = new apiPlusService($client);
//$person = $plus->people->get($plus_id);
$results = $plus->activities->listActivities($plus_id, $collection);
于 2012-06-08T15:16:33.810 回答