我試圖在我的服務器和Google Cloud Connection Server(CCS)之間打開XMPP連接,但它不起作用。我使用PHP編程並使用JAXL庫。這裏是我的代碼:無法連接到Google Cloud Connection服務器
<?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
我究竟做錯了什麼?
但從'連接超時out'一個純粹的網絡點通常是指連接問題,所以我會檢查PING和防火牆,並可能使用NMAP來查看端口5235是否可訪問。 –