我已经阅读了Android和iOS SDK文档,以将推送通知集成到我的聊天实现中。我看不到讨论的一个主题是,当点击推送通知时,如何导航到应用程序中的正确位置。
例如,当用户点击推送通知时,应用如何响应事件以导航到接收消息的频道视图?
答案 0 :(得分:0)
文档Push Notifications on iOS没有引用它,而是深入研究了我发现的TwilioChatClientDelegate Protocol Reference的iOS SDK。它有一个代表我正在寻找的代表:
– chatClient:notificationNewMessageReceivedForChannelSid:messageIndex:
– chatClient:notificationAddedToChannelWithSid:
– chatClient:notificationInvitedToChannelWithSid:
– chatClient:notificationRemovedFromChannelWithSid:
– chatClient:notificationUpdatedBadgeCount:
对于Android,有com.twilio.chat.NotificationPayload Class Reference,该方法具有从通知有效内容中解析出数据的方法。