Anders Lund

  • Total activity 15
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 1 user
  • Votes 0
  • Subscriptions 9

Activity overview

Latest activity by Anders Lund
  • Anders Lund created an article,

    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...

  • Anders Lund created an article,

    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...

  • Anders Lund created an article,

    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...

  • Anders Lund created an article,

    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...

  • Anders Lund created an article,

    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...

  • Anders Lund created an article,

    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 ...