Anders Lund
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 9
Articles
Recent activity by Anders Lund-
How MAU is Calculated via our Different means of Authentication
There are 3 different ways to authenticate a user: connectUser( { id: USER_ID }, TOKEN ): { id: 'user_123', role: 'user', created_at: '2022-03-22T21:25:23.091757Z', updated_at: '2022-03-22T21:25:23...
-
Guide to Channel State
Chances are, if you’ve been creating / querying channels using our API, you’ve come across channel state. If not, you can execute the following code: client.queryChannels({cid: 'messaging:example-i...
-
How can I Fetch Reactions with my own Included? - Feeds
Perhaps while fetching a particular feed, you would also like to retrieve the reactions of the active user. This can be done like so: client.feed(‘timeline’, ‘bob’).get({ reactions: { own: true, r...
-
Should I call this method client-side or server-side?
With the amount of freedom and flexibility Stream provides in regards to usage, it can often evoke discussions of higher level architectural patterns that are better addressed near the beginning of...
-
How do I Change the Default Text in the React UI Components? - Chat
While implementing our chat UI components into your application, you may have had a few thoughts in regards to the product and overall experience. Aside from the overwhelming feeling of joy of how ...
-
What's the Difference Between Feeds and Feed Groups?
When instantiating a new feed, two arguments will be required: the feed group and the feed ID. Consider the code below where ‘timeline’ is the feed group and ‘jack’ is the feed ID. const jack = cli...