My english is bad. Sorry.
The system can also send content normally.
But I could not send URL by adding.
<?php
require “postToGooglePlus.php”;
$email = ‘mymail@gmail.com’;
$pass = ‘mypassword’;
$msg = ‘Text’;
$pageID = ’10***********************’;
$loginError = doConnectToGooglePlus2($email, $pass);
if (!$loginError)
{
$lnk = doGetGoogleUrlInfo2(‘https://www.website.com/’);
doPostToGooglePlus2($msg, $lnk, $pageID);
}
else echo $loginError;
?>