0

我尝试将推送通知发送到Android设备作为指南(https://firebase.google.com/docs/cloud-messaging/server#connecting),我正在使用Gloox库发送它,但服务器响应我一些不可读数据从谷歌服务器(\ X15 \ X3 \ X1)和无法解析:通过Gloox XMPP库向Google Firebase发送推送通知

log: level: 0, area: 8, This is gloox 1.0.20, connecting to fcm-xmpp.googleapis.com:5236... 
log: level: 0, area: 32, Connecting to fcm-xmpp.googleapis.com (64.233.188.188:5236) 
log: level: 0, area: 32, Connected to fcm-xmpp.googleapis.com (64.233.188.188:5236) 
log: level: 0, area: 262144, <stream:stream to="gcm.googleapis.com" xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams" version="1.0"> 
log: level: 2, area: 8, parse error (at pos 0): 

回答

0

我把它解决了,那是因为火力地堡不支持“STARTTLS”,但GLOOX启用“STARTTLS”(在TLS握手之前发送XML)。

我们应该用下面的代码来禁用 “STARTTLS”:

JID jid("[email protected]"); 
    j = new Client(jid, "AAAAADMKj3w:APA9178fdsksW-0rDT0dTu1rMoO0N30J_KldYx9XsQ86fd3540bTIR9e54wDLpU0TWdPf8DnsBRZH-YEc5rtHuRMJRPE_92bcKkLNT42JQ-9fzLJW1yu34r89diWiBS6Rt6_56WzUUmJarc2WCDzz2Tj");  
    j->setServer("fcm-xmpp.googleapis.com"); 
    j->setConnectionImpl(new ConnectionTLS(j, new ConnectionTCPClient(j->logInstance(), "fcm-xmpp.googleapis.com", 5236), j->logInstance())); 
    j->setPort(5236); // For release will be 5235 // The TLS and SASL default is enabled 
    j->setTls(TLSOptional); 
    j->setSasl(true); 
    j->registerConnectionListener(this); 
    j->registerMessageSessionHandler(this, 0); 
    j->disco()->setVersion("PortSIP PBX", "9.0"); 
    j->disco()->setIdentity("PushSender", "Sender"); 
    j->disco()->addFeature(XMLNS_CHAT_STATES);