gpt4 book ai didi

ios - 即使用户很久以前离线,XMPP Last Seen 总是返回 '0' 秒

转载 作者:行者123 更新时间:2023-12-01 16:28:53 26 4
gpt4 key购买 nike

我正在使用 XMPP RobbieHanson 框架,目前我在 didReceivePresence 函数中使用以下代码启用了自动订阅。

    if([[presence type] isEqualToString:@"subscribe"])
{
NSLog(@"presence user wants to subscribe %@",[presence fromStr]);

[[self xmppRoster] acceptPresenceSubscriptionRequestFrom:[presence from] andAddToRoster:YES];
}
else if([[presence type] isEqualToString:@"unsubscribe"])
{
[xmppRoster rejectPresenceSubscriptionRequestFrom:[presence from]];
[xmppRoster revokePresencePermissionFromUser:[presence from]];
}

对于某些用户,我仍然将最后一次视为“0”秒或 403 禁止。但有时我确实知道他们离线或在线, enter code here这意味着我已经并且他们已经接受了出席订阅。
    if([[presence type] isEqualToString:@"subscribe"])
{
NSLog(@"presence user wants to subscribe %@",[presence fromStr]);

[[self xmppRoster] acceptPresenceSubscriptionRequestFrom:[presence from] andAddToRoster:YES];
}
else if([[presence type] isEqualToString:@"unsubscribe"])
{
[xmppRoster rejectPresenceSubscriptionRequestFrom:[presence from]];
[xmppRoster revokePresencePermissionFromUser:[presence from]];
}

最佳答案

如果 TCP 连接未关闭,并且尽管您已向用户声明脱机,则始终提及最后一次看到并返回为零。

您需要通过在框架中显式调用“xmppstream”的断开来断开 TCP 套接字。

另请注意,在后台运行并由于 XMPPReconnect 模块启用而重新连接的应用程序将显示最后一次看到然后服务器最后一次终止连接。但如果用户在后台模式下重新连接,他将显示为在线。

对于 403 Forbidden 应该向用户订阅出席信息,如果他离开系统或者您正在删除并在聊天服务器中重新添加用户,那么该人必须再次发送并接受订阅请求,否则 403 错误将被抛出。

我已经停止了为我的 Apple App 启用的后台模式,所以现在这对我来说很好。

任何更多的建议都受到热烈欢迎。

关于ios - 即使用户很久以前离线,XMPP Last Seen 总是返回 '0' 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33365314/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com