Questions tagged [getstream-chat]

59 questions
0
votes
1 answer

how to use Stream Feed api and actually test it?

I have been working my graduation project which is "Social network application for my university" it basically have 4 main pages (Home page, news page, messages page and profile page) I followed along with the messaging page with these…
Ravennuo
  • 1
  • 2
0
votes
0 answers

React getstream.io authentication problem

We got an error in stream authentication while login as a register user. I think there is a problem in stream configuration because I double check my code there was no problem. We try to eanble and disable all the options like "development" and…
0
votes
1 answer

React GetStream Error: Both secret and user tokens are not set

When a user navigates to my chat page, I am getting the following error message: Error: Both secret and user tokens are not set. When the user navigates to my chat page, I am passing the userId as a param. I would like to use the userId to call…
Sam Yoon
  • 53
  • 5
0
votes
0 answers

How to prevent push notifications for active/watching channels in a Capacitor app using GetStream.io chat?

I am using GetStream.io for implementing chat functionality in my Capacitor app. Currently, I am receiveing push notifications for all the new messages, even when I am actively watching the channel and chatting with the person. I want to prevent…
0
votes
0 answers

How to change icons in Stream.io Chat Sdk with React Native?

How to change icons in Stream.io Chat Sdk with React Native ? I didn't find any props to change icon.
Pirolo
  • 1
  • 3
0
votes
2 answers

How to show stream chat notification background using FirebaseMessaging.onBackgroundMessage

I'm using stream chat for my app's chat functionality. In which I'm implementing notification. So when I'm receiving notification in background FirebaseMessaging.onBackgroundMessage(firebaseMessagingBackgroundHandler); Above is the function which…
0
votes
1 answer

How to delete a single attachment from a message with multiple attachments using Stream Chat React

I'm currently using Stream Chat React to build a chat application, and I'm facing an issue when trying to delete a single attachment from a message containing multiple attachments. I can successfully delete the entire message using the methods…
Tanuj G
  • 3
  • 2
0
votes
0 answers

End to End encryption for messages with search functionality

I am developing a flutter app with chat functionality and I am using stream_chat_flutter for chat functionality. I need to implement end to end encryption on messages I have followed documentation for encryption as given in the link…
0
votes
0 answers

Is it possible to create a Progressive Web App using Stream SDK?

I am trying to build a PWA using the Stream SDK and I am wondering if someone has done it before. Is it possible? Do all functionallities from StreamChat in a native app work the same in a PWA? Thanks! I have a SwiftUI app for now.
0
votes
0 answers

how to udpate data of deactivated user getstream api?

is it possible to update the data of a deactivated user?. When updating the API, it returns a 'user not found' error message."
Sanjay Raut
  • 149
  • 1
  • 2
  • 10
0
votes
0 answers

Getstream How to disable a message action (messageAction returns undefined)(Typescript)

I am trying to disable most of the message in getstream chat but the function returns undefined and after following the docs like a script kiddie its still not working messageActions={({ blockUser, copyMessage, …
0
votes
0 answers

Stream chat message input not calculating keyboard height properly until you type

For some reason, only on android, the keyboard compatible view with stream chat doesn't calculate the proper height correctly until I start to type. I have tried many different configurations and can't figure out why it is only on android and why it…
0
votes
1 answer

React Native: How to implement swipe action in GetStream ChannelList?

I am new to RN and using GetStream, I need to implement something like this. This is from their actual demo app tho I believe this is made with native since I tried searching but what I saw in their documentation is native implementation. I tried…
Bitwise DEVS
  • 2,858
  • 4
  • 24
  • 67
0
votes
1 answer

Stream-Chat error on creating channel: Invalid chat id, letters, numbers and "!-_" are allowed at new channel

I am trying to follow a youtube tutorial(https://www.youtube.com/watch?v=MJzbJQLGehs) to get an understanding on how to create a messaging app in react. I am to the point of creating channels and I keep getting an error message: CreateChannel.jsx:45…
Jacqueline
  • 21
  • 7
0
votes
1 answer

Getting error in flutter with webcryto: "package:webcrypto failed to attached finalizer"

This is for encryption from documentation of getStream. https://getstream.io/chat/docs/sdk/flutter/guides/end_to_end_chat_encryption/#dependencies I am using webcrypto: ^0.5.2 as mentioned in the documentation. Future generateKeys()…