我使用this nodeJS包设置了一个XMPP服务器。我可以发送下游消息(从XMPP服务器到设备)就好了,但是当我尝试发送上游消息时,服务器很少收到它。
处理上游消息的服务器上的代码是:
xcs.on('message', function(messageId, from, data, category) {
console.log("Got msg")
console.log(arguments)
});
在android studio中,我使用:
发送上游消息public void send(ArrayList<String> messages) {
System.out.println("Attempting to send");
FirebaseMessaging fm = FirebaseMessaging.getInstance();
System.out.println("msgId: " + msgId.get());
RemoteMessage.Builder rm = new RemoteMessage.Builder(SENDER_ID + "@gcm.googleapis.com")
.setMessageId(Integer.toString(msgId.incrementAndGet()));
for (int i = 0; i < messages.size(); i++) {
rm.addData(String.valueOf(i), messages.get(i));
}
fm.send(rm.build());
}
使用print语句我看到send函数确实被调用,并且在发送时没有错误,但节点服务器什么都没有收到。我会注意到服务器SOMETIMES接收上游消息,但是它接收了近50次尝试。
这是我从服务器收到消息然后尝试发回上游消息时得到的一些调试器输出:
V/FA: Session started, time: 3115366
I/FA: Tag Manager is not found and thus will not be used
D/FA: Logging event (FE): _s, Bundle[{_o=auto, _sc=MainActivity, _si=8922817241262257215}]
V/FA: Using measurement service
V/FA: Connecting to remote service
D/FA: Connected to remote service
V/FA: Processing queued up service tasks: 1
V/FA: Inactivity, disconnecting from the service
I/System.out: Receieved message:
I/System.out: Key = TYPE, Value = TEXT
I/System.out: Key = ACTION, Value = GET
I/System.out: Attempting to send
我不知道问题出在android客户端还是节点服务器上。谢谢你的帮助。
答案 0 :(得分:0)
问题是我使用AWS Lambda来托管XMPP服务器,以为我只能在需要时才能将其转换。 XMPP服务器需要处于服务器设置(可以保持打开状态),而不是关闭和打开。细节超出了我的范围。