Hosted News feeds API that allows you to build scalable news feeds and activity streams
Questions tagged [getstream-io]
703 questions
2
votes
1 answer
Chat and Feed app using getStream, having custom UI
I want to integrate getStream to enable chat and feed in my next mobile app (Android and iOS both). I am struggling with the best possible solution with this implementation. The first query here is the connection:
The app should connect with…

amrendra
- 345
- 2
- 12
2
votes
1 answer
Upgrade from Node.js 8.0 to 12.10 for Stream.io Chat
We are looking into implementing STREAM.IO Chat functionality. As per System Requirements, we have to use the latest Node.js which is 12.16.3.
In our production environment we still have Node.js 8.1. My questions is;
Has anybody tried to use…

Tekin Tez
- 23
- 3
2
votes
0 answers
Not All Messages Forwarded to SQS from GetStream.io
Setup: A flat feed (representing an artist) is followed by another flat feed (representing users). Activities are added to the artist feed and the expectation is that those activities show on the feeds of all users following an artist and are then…

Paul Dumoulin
- 21
- 1
2
votes
1 answer
Fetching all channels using Getstream
I am trying to fetch all channels of a user(channel of which that user is a member). So, I got to know about this :
const filter = {
type: 'messaging',
members: { $in: [`${req.body.id}`] },
};
const…

Harshita
- 372
- 4
- 16
2
votes
1 answer
The best workflow from auth firebase, firestore, and firebase functions to getStream.io chat
I am a little lost, sorry if this is not the right place to ask this, but I would like to know if someone would have the capacity (and the good will) to explain to me or to give me some advice for them. following points.
Currently, I develop the…

JasonBeni
- 51
- 7
2
votes
0 answers
Getstream Chat Documentation for Attachments & Actions / How to make clickable predefined answers?
I am not able to find Stream Chat React-Native documentation for Actions or I am not using what I found correct :-)
I am able to find a message example like:
{
'text': 'Wonderful! Thanks for asking.',
'attachments': [
{
…

Sune
- 21
- 1
2
votes
1 answer
Notification without following a user in Getstream.io
Is there a possibility to get notifications from GetStream.io APIs, without following a user whom notifications are to be sent?

Shrishti
- 21
- 3
2
votes
1 answer
GetStream.io posts like in facebook
Ok, I have a feed with a lot of activities.
The user can post an activity.
I want something facebook like... So other users can like that post and can write answers to it. How can I do that?
Thanks:)

lacas
- 13,928
- 30
- 109
- 183
2
votes
1 answer
Is there any way to filter activities of only followers from Feed Group of type Flat?
Could you please help me to setup below architecture?
I have created 3 different Feed Groups say timeline, timeline_images, timeline_videos with type Flat to filter activities based on activity types (blog, image, video). Adding activity to Feed…

Nitin Barai
- 21
- 1
2
votes
0 answers
"Reaction does not exist" when I want to delete a reaction
When writing my tests in Laravel with the Get Stream Laravel wrapper, I want to test to deleting a reaction.
I basically do this:
$client = FeedManager::getClient();
$reactions = $client->reactions()->filter('user_id' , $this->user->id);
…

Royw
- 599
- 5
- 24
2
votes
0 answers
getstream i get chat is not enabled for the organization XXXXXXXX with id XXX
getstream i get chat is not enabled for the organization XXXXXXXX with id XXX when trying to setuser on my applicaation
this.client=new StreamChat(myappisd)
// console.log(this.token)
await…

Iamdevmaniac
- 21
- 3
2
votes
1 answer
Issue setting up getstream.io react native demo on Mac
I'm trying to set up the react native tutorial at https://getstream.io/react-native-activity-feed/tutorial/, and it's not working.
I have the latest version of node, yarn, expo and create-react-native-app. All packages are updated.
When I run…

AlexH
- 317
- 1
- 3
- 17
2
votes
1 answer
How to disable Stream in Django
I am trying to temporarily prevent stream_django from making any remote API calls for offline development and testing purposes.
What is the easiest way to completely disable remote connections to the upstream API servers?
I found…

soulshake
- 780
- 8
- 12
2
votes
2 answers
proper user creation flow with GetStream.io and firebase?
I am new to getStream.io and I am trying to understand a user creation flow with getstream.io and firebase. If I create a new user in firebase and then pass in their firebase UID to functions such as:
client = stream.connect('YOUR_API_KEY',…

fargoboyDC
- 75
- 2
- 12
2
votes
1 answer
Why does Stream remove the time zone code when setting a timestamp?
I've observed that if you create an activity with a timestamp like this:
2010-09-17T14:27:37.860Z
It will be stored like this:
2010-09-17T14:27:37.860
Note the missing time zone code. From what I can tell, this violates the ISO standard, and it…

Eric
- 999
- 2
- 8
- 23