gpt4 book ai didi

react-native - Twilio 可编程聊天消息用户友好名称

转载 作者:行者123 更新时间:2023-12-03 23:11:33 25 4
gpt4 key购买 nike

我正在使用 Twilio Programmable Chat 向我的内置 React Native 的移动应用程序添加聊天功能。我为此使用了 JS 客户端 SDK。

当应用程序收到新消息时,通过的数据使用作者字段的用户身份。是否可以在有效负载中包含friendlyName,以便我可以将其显示给用户。

我可以为所有用户发出单独的请求,并在应用程序中找到正确的用户,但如果这些数据可以在同一个请求中,那就太好了。

谢谢你的帮助

最佳答案

是的,只有 author字段出现在新消息事件中,我使用了另一种方法

channelMembersDict = {}
// Assuming you have set selected an Channel
this.activeChannel.getMembers().then(members => {
members.forEach(mem => {
//member contains friendlyName attribute
this.channelMembersDict[mem.state.identity] = mem;

//If you really want user then
mem.getUser().then(user => {
this.channelMembersDict[mem.state.identity] = user;
});
});

关于react-native - Twilio 可编程聊天消息用户友好名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56609234/

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