Insert a comment on a Google+ page

215 Views Asked by At

How to post a comment or reply to a comment by using the google+ API?

I tried this:

$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();
}

But it is not working, no comment or post is sent.

0

There are 0 best solutions below