67 questions
0
votes
0
answers
21
views
How to cache the unread message using stream_chat_persistence in Flutter?
I am building a chat application using the stream_chat Flutter package for chat functionalities and stream_chat_persistence for local data storage.
The local caching is working fine for most cases, ...
1
vote
0
answers
30
views
java.lang.InstantiationException: java.lang.Class<io.getstream.android.push.delegate.PushDelegateProvider> cannot be instantiated
I am encountering a runtime crash in my Android application during startup. The stack trace indicates an issue with the PushDelegateProvider class from the io.getstream.android package. Here is the ...
0
votes
0
answers
18
views
stream-chat: Nothing appears on small screens
here's the relevant code of chat-stream in my NextJs app:
Chat.tsx
<div className="flex h-full w-full">
<StreamChat
client={chatClient}
theme={
resolvedTheme === &...
0
votes
0
answers
115
views
upstream image response failed for..., "url" parameter is valid but upstream response is invalid - NextJS ImageError
I will be very thankful for any thoughts or ideas about this problem!
In my Next.js 14 project, I'm building a chatting application using Getstream (SDK/API). I'm working on a component to display ...
0
votes
0
answers
21
views
Managing StreamChatClient Initialization and Connection with Riverpod: Architecture Advice
Background:
I’m using StreamChat in my Flutter app. The documentation mentions that the StreamChatClient should only be initialized once and client.connectUser() should only be called once to avoid ...
0
votes
1
answer
55
views
Integrating Azure B2C custom sign up policy with MAUI app and creating new user in stream
Hello from a new novice developer. Thanks in advance for any helpful links, posts, guidance, etc..
Here's what I'm attempting to accomplish..
I am writing a .NET MAUI app and looking to integrated ...
0
votes
0
answers
36
views
Search User in chat Channel List page like WhatsApp in getstream-io getstream-chat in Flutter
I am using Stream SDK in my app using flutter so in chat channel list screen I want to search user by name or number and Navigate to chat screen by clicking on the user like WhatsApp. I am trying so ...
0
votes
0
answers
60
views
Module not found error when using stream-chat-react with Next JS 12
import { Chat } from 'stream-chat-react';
function Chats ({streamToken, user}) {
const [chatsClient, setChatsClient] = useState<StreamChat>(StreamChat.getInstance('API_KEY'));
useEffect(() =...
1
vote
1
answer
37
views
How to delete getStream users efficiently
I've more than 1000 test users in both our database and getStream. Now the problem is when clean up test user, I'm able to delete 1000 users using query for our database but for stream i got stumbled.
...
0
votes
0
answers
31
views
Stream Chat: IOS: Why does the user avatar disappear when I close the app?
I have mobile and web app with stream chat. I call connectUser method on mobile and pass userInfo with imageURL. The user avatar starts showing up on the web, but as soon as I close the mobile app or ...
0
votes
0
answers
74
views
Stream Chat implementation in NextJS and using Auth0 for user login
I am trying to set up a chat system within my application and planning to use the stream-chat sdk.
I was following some examples and some how not able to get it through.
This is my page
"use ...
1
vote
0
answers
32
views
Why is the "invisible" field null in GetStream.io dashboard despite setting it to false when querying users?
I'm encountering an issue with GetStream.io while querying users. Despite explicitly setting the "invisible" field to false in the user object during the query, the field remains null in the ...
0
votes
0
answers
50
views
Firebase cloud function to respond within 3 seconds but continue running
I have a Streamchat webhook that triggers a Firebase Cloud Function everytime a chat is sent. The webhook expects a response within 3 seconds but my logic takes longer than that to run. How can I make ...
1
vote
0
answers
24
views
getStreamUserToken cloud function error 'Function must be called while authenticated', though user IS authenticated?
I'm using React Native CLI with Firebase for auth and have installed the stream chat extension, I think correctly. When I call the cloud function getStreamUserToken it just gives me the error 'The ...
0
votes
0
answers
26
views
Two user are not connecting through channel
In my code, two users are not able to connect in a channel together, and an error is occurring: "StreamChatNetworkError(code: 1000, message: Unauthorised, token not defined)".I think my ...