嗨当我通过unificationengine API在谷歌发送消息以及随后我收到此错误unifcationengine不与谷歌合作+共享
stdClass Object
(
[Status] => stdClass Object
(
[GP] => stdClass Object
(
[status] => 504
[info] => 504 Connection Error: Post https://googleplus-v2connector.unificationengine
.com/v2/message/send: EOF:
)
)
[URIs] => Array
(
)
)
unificationengine API做工精细与Facebook和Twitter,但它不是与工作GOOGLEPLUS
我的代码是
$app = new UEApp("APP_KEY","APP_SECRATE");
$user = new UEUser("USER_KEY","USER_SECRET");
$connection = $user->add_connection('google', "googleplus", $access_token);
$options = array(
"receivers" => array(
array(
"name"=> "Me"
)
),
"message"=>array(
"subject"=>"ABC",
"body"=> "",
"image"=>$shareImageUrl,
"link"=>array(
"uri"=> $link,
"description"=> "",
"title"=>"Click here for view"
)
)
);
//Send the message and get their uris
$uris = $connection->send_message($options);
print_r($uris);
$myArray = explode('/', $uris[0]);
return $myArray[3];
现在我收到的一些错误在FB和Twitter +共享和谷歌相同的加共享“卷曲错误28:手术后10000毫秒收到0字节超时”现在我不能够分享FB上的任何消息,微博和谷歌 –
现在我在其他工作API {“状态”:504,“信息”:“504连接错误:发布https://pinterest-v2connector.unificationengine.com/v2/test:拨号tcp 52.210.137.103:443:getsockopt:连接被拒绝“} –
如何获得PAGE_ID –