2012-04-01 25 views
4

我想獲取用戶的所有Google Plus活動。我可以獲得用戶的所有posts,但我無法找到任何方法來獲取用戶所擁有+1或註釋的所有內容。我可以嗎?Google+ API:獲取我+1的東西

+0

你設法解決這一問題? – 2013-05-11 10:03:30

回答

1

使用這個PHP代碼和u得到特定活動意見的名單

$optParams = array('maxResults' => 100); 
$comments = $plus->comments->listComments(activityid,$optParams); 
foreach($comments['items'] as $comment) { 
print "{$comment['id']}, {$comment['object']['content']}\n"; 
}