无法使用 XMPPHP 库在我的应用服务器和 GCM 的 CCS 之间建立 xmpp 连接
2022-08-30 21:22:53
就像推送通知(下游消息)一样,我想在php中实现从我的Android设备到我的应用程序服务器的上游消息传递。
我正在使用Github的这个XMPPHP库将我的应用程序服务器连接到GCM的CCS。但是当我尝试执行以下代码来连接GCM的CCS时:
include 'XMPPHP/XMPP.php';
$conn = new XMPPHP_XMPP('gcm-preprod.googleapis.com', 5236, '<myProjectId>@gcm.googleapis.com', '<myApiKey>', 'xmpphp', 'http://myserverdomain', $printlog=true, $loglevel=XMPPHP_Log::LEVEL_INFO);
$conn->autoSubscribe();
$vcard_request = array();
try {
$conn->connect();
...
我收到以下错误。
1455354076 [INFO]: Connecting to tls://gcm-preprod.googleapis.com:5236 1455354106 [ERROR]: Could not connect. Could not connect before timeout.