我正在尝试在我的服务器和 Google Cloud Connection Server (CCS) 之间打开 XMPP 连接,但它不起作用。我正在使用 PHP 编程并使用 JAXL 库。这是我的代码:
<?php
include_once 'jaxl.php';
$client = new JAXL(array(
'jid'=>'<my_sender_ID>@gcm.googleapis.com',
'pass'=>'my_API_key',
'auth_type'=>'PLAIN',
'host' => 'gcm.googleapis.com',
'port' => '5235',
'force_tls' => true
));
$client->start();
echo "done";
?>
然后我得到这个错误:
unable to connect tcp://gcm.googleapis.com:5235 with error no: 110, error str: Connection timed out
我究竟做错了什么?