2012-04-27 84 views

回答

1

以下是link to the API Explorer,其中活動列表配置爲顯示您的所有活動。

由於me userId是您的私人數據,因此您需要點擊屏幕右上角的OAuth 2.0開關,並授權API Explorer在提交查詢之前瞭解您在Google+上的姓名。

0

如果您使用的是PHP,用Google-provided php client library,它看起來像這樣:

$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); 
+0

感謝您的代碼。但是,它是否會在活動列表中的google-plus帖子上返回前一個+1?我想要的是此頁面的列表:https://plus.google.com/apps/activities。我使用'me'作爲範圍。 – 2014-12-20 13:33:57

+0

我不知道答案是什麼;也與G +被...棄用?我認爲最好繼續前進,去做其他事情。 – Cheeso 2015-01-07 04:08:03

相關問題