google+ API を使用してコメントを投稿したり、コメントに返信したりする方法は?
私はこれを試しました:
$service = new Google_Service_PlusDomains($client);
try {
$activity = new Google_Service_PlusDomains_Activity();
$activity->setObject($text);
$activity->setActor($this->id);
$activity->setTitle($text);
$reply = $service->activities->insert('me',$activity);
} catch (Exception $e) {
print 'An error occurred: ' . $e->getMessage();
}
しかし、それは機能していません。コメントも投稿も送信されません。