如何获取带有时间戳 XMPP iOS 的消息?

Posted

技术标签:

【中文标题】如何获取带有时间戳 XMPP iOS 的消息?【英文标题】:How to fetch message with timestamp XMPP iOS? 【发布时间】:2016-08-04 08:51:13 【问题描述】:

我正在使用 Openfire、XMPP、ios 的“GroupChat”。

我想在定义的时间后获取历史记录,所以我用谷歌搜索它,我发现它使用“Since”。

  NSXMLElement *history = [NSXMLElement elementWithName:@"history"];
    [history addAttributeWithName:@"since" stringValue:@"2016-07-04T09:06:38.588Z"];

    [xmppRoom joinRoomUsingNickname:self.xmppStream.myJID.user
                            history:history
                           password:nil];

但它从表中获取所有记录,我只想在定义的时间后记录。 我也使用了明火时间戳,但它没有用。

我如何随时间获取历史记录?

【问题讨论】:

【参考方案1】:

[XMPP 扩展-0045]: http://xmpp.org/extensions/xep-0045.html

7.2.15 管理讨论历史

    from='hag66@shakespeare.lit/pda'
    id='n13mt3l'
    to='coven@chat.shakespeare.lit/thirdwitch'>
  <x xmlns='http://jabber.org/protocol/muc'>
    <history since='2015-01-01T00:00:00Z'/>
  </x>
</presence>

还要检查房间默认值,例如您可以获取的消息数量或您的服务器能够获取的消息数量。

【讨论】:

如何在 ios 中设置零时间戳? 它将时间戳转换为日期..但它需要将当前日期转换为零时间戳..如何实现?

以上是关于如何获取带有时间戳 XMPP iOS 的消息?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 IOS 的 XMPP 群聊中接收通知

如何从历史中获取时间戳?

如何在 iphone sdk 的 xmpp 中发送带有消息的笑脸/情感(图像)?

如何使用 XMPP 实现聊天列表

如何使用 XMPP ios8 获取最后一个对话用户?

如何在 ios 中使用 XMPP 接收离线消息