Sacha Arbonel
Sacha Arbonel
Running this integration test with your credentials works for me [faye_client_test.dart](https://github.com/GetStream/stream-feed-flutter/blob/master/packages/stream_feed/test/faye_client_test.dart). Flutter wise, did you have any change in your codebase recently, in the way you manage your state? Maybe...
There is a bug somewhere in our Faye implementation I'll investigate and let you know when we have a fix for you to try out
Hey @svk014, sorry for the late response. I think something like this should work: ```dart final activities = await yourfeed.getEnrichedActivities(flags: EnrichmentFlags().withOwnReactions().withReactionCounts().reactionKindFilter("comment")); final commentCount = activities.map((activity) => activity.reactionCounts["comment"]).reduce((a, b) => a...
Hey @Shahmirzali-Huseynov thanks for submitting an issue. We are indeed missing an handy method to show all users, added this is to our backlog
Hey @Cteq3132 thanks for opening an issue, looks like Dio did not catch the error. I think we can fix this with an Interceptor ```dart InterceptorsWrapper( onError: (error, handler) {...
Thanks for the enthusiasm @akul1994 bear with us while we work on releasing a tech preview of the Feeds UI kit this quarter
Hi @ObserverMoment can you try to instantiate flat feed like this `streamFeedClient.flatFeed(kUserFeedName);`(without userId) and let me know if it worked?
So I checked some backend logic to see what's up and apparently you don't have enough claims in your JWT token. You need those fields to be not null: `user_id`,...
Hey sorry about that, this is indeed a doc issue. To set the user token you have to do it like that: ```dart await client.setUser( const User( id: 'GroovinChip', data:...
Hi @developerpaaji, thanks for opening an issue. In the UI kit we are working on, we made this convenient method https://github.com/GetStream/stream-feed-flutter/blob/20efd500402eab7b89e28a6a3c8cde2335f3efa2/packages/stream_feed_flutter_core/lib/src/bloc/feed_bloc.dart#L117-L125 Would this work for you?