Questions tagged [getstream-chat]

59 questions
1
vote
1 answer

Get stream, System message customisation stream-chat

community I implemented stream-chat & stream-chat-react getStream Hi, I want to show the system message on some events For Ex: User A added User B to the chat (Here user A and User B is the name of both user but I don't want to send those message as…
Tanuj Gupta
  • 286
  • 5
  • 20
1
vote
0 answers

How do I create new users in Stream-Chat using data from FirebaseAuth?

I'm trying to make a chat application which uses FireBaseAuth as authentication service and stream chat as chat service. I want to create a new user in stream chat as soon as the user is authenticated from firebase. How to I do that? I've already…
1
vote
1 answer

why can't create user using stream chat api in flutter?

I'm trying to create a chat screen in my flutter application using Stream chat API. the problem is when I try to create a channel with two users it shows that the users are not created even though I have created them: E/flutter ( 4695):…
abdalrahman alenzi
  • 159
  • 1
  • 1
  • 6
0
votes
0 answers

Creating StreamChat Channel SwiftUI

I have a swiftui app and trying to integrate the Stream Chat SDK. I have been able to successfully log a user in, but having difficulty creating a channel and the documentation is quite challenging to work with to understand the issue. Here is my…
0
votes
0 answers

OverlayProvider Throwing error while using react-native-reanimated "2.2.0"

I am using react-native 0.62.3 with react-native-reanimated 2.2.0 and it is working fine in IOS but in android it is throwing error for react-native-reanimated usage because of OverlayProvider Below is my Package.json { "scripts": { "start":…
0
votes
2 answers

CORS error for a Firebase Extension Function on localhost (Angular)

does anyone know how to solve the CORS error for a Firebase Extension Function on localhost? In summary, I'm trying to use an extension called "Authenticate with Stream Chat." Inside the extension, there are several functions. One of them is an…
0
votes
0 answers

How to use the function "getStreamUserToken" from Firebase Authenticate with Stream Chat extension in client-side Angular?

I am trying to use the getStreamUserToken function from Firebase Authenticate with Stream Chat extension in an Angular client-side application. However, my implementation is not working as expected. Here's the code I have tried: The function: // Get…
0
votes
0 answers

GetStream: Watching (creating) a channel after it has been delete will show an error

When I try to delete a channel, the user that belongs to that channel is also deleted. Then when I watch (or create) a new channel with the same user, I get the following error: Error: StreamChat error code 4: GetOrCreateChannel failed with error:…
0
votes
0 answers

TypeError: undefined is not an object (evaluating 'updated_at.toISOString')

I have recently integrated stream-chat-react-native in my react-native project and I have integrated it successfully means I am able to create channel and connect user but whenever I am trying to send message through it , it throws error: Possible…
Kaustubh
  • 1
  • 2
0
votes
1 answer

ExceptionsManager.js:76 TypeError: (0 , _reactNativeReanimated.useSharedValue) is not a function

I am trying to integrate stream-chat-react-native in my react-native project and facing this _reactNativeReanimated.useSharedValue error when wrapping my navigation component with OverlayProvider which comes from…
0
votes
1 answer

Unable to Upload images via Stream Feeds

I'm using GetStream Feeds and stream_feed_flutter_core for building a instagram like app. I'm able to add activity to the feeds and even able to upload files but not able to upload images. Steps I'm following for setting up the client and…
Anupriya
  • 5
  • 2
0
votes
1 answer

getStream plugin not displaying any channels

I'm using the getStream plugin to create a simple-ish android chat app using Jetpack Compose.I have some channels created through the dashboard, but they do not display. From what I was following…
0
votes
1 answer

Flutter Add custom auth headers to StreamChat

I am having issues when using Custom CDN configurations (my own server) to store Image attachments on my Stream Chat Flutter project because I cannot set the headers when the images are downloaded. I followed the tutorial to have my custom CDN set…
Devo
  • 1
  • 1
0
votes
1 answer

GetStream Error: Both secret and user tokens are not set. Either client.connectUser wasn't called

import { client } from "./stream"; export default async function handler( ) { try { try { - await client.upsertUser({ username: username as string, id: user_id as string, image: image as string, …
0
votes
0 answers

Streamchat Error on retrieving messages from user (Stream-chat-expo)

I have an error whenever i try to open a channel that has messages from an other user that isn't me. I'm able to open the channel succesfully whenever there is no message send before or, if there are only messages by myself. So whenever opening a…