2012-04-01 3 views
4

사용자의 모든 Google Plus 활동을 가져오고 싶습니다. 모든 사용자의 posts을 얻을 수는 있지만 사용자가 +1했거나 댓글을 단 모든 것을 가져올 수있는 방법을 찾을 수 없습니다. 그럴 수있어?Google+ API : +1 한 작업 받기

+0

당신은 문제를 해결하기 위해 관리나요? –

답변

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"; 
}