Questions tagged [getstream-io]

Hosted News feeds API that allows you to build scalable news feeds and activity streams

703 questions
0
votes
0 answers

Django GetStream update activity sorting after activity to push it to the top of a feed

I have a panel model with an Activity mixin to tie in to the GetStream system. Each of this panels can be edited and there can be comments added to this panels. When either of this activities takes place, I would like to push this activity to the…
0
votes
1 answer

Using Collections to enrich GetStream.io feed activity

I am developing a React Web App with GetStream at the core. I have been reviewing Collections. I was wondering if/how it can be used to enrich feed/activity data if I was to "upsert" user profile and product information.
Tama
  • 1
0
votes
2 answers

How to integrate news feed with bubble.is platform to perform functionality of getstream

I m build a social network using bubble.is platform but not able to fiqure out how to integrate news feed and notification system in bubble.is platform from the getstream.io platform
0
votes
1 answer

Getstream data import pattern

We are preparing import data to submit to getstream. The pattern in your documentation looks like: // start by adding multiple activities, grouped by feedId {"instruction": "add_activities", "feedId": "user:1", "data": [{"actor": 1, "verb": "tweet",…
Shaharyar
  • 12,254
  • 4
  • 46
  • 66
0
votes
0 answers

Having issues getting an activity to update on Getstream.io via REST API

I believe I'm following the documentation correctly for the Getstream REST API but for the life of me can't get an activity of mine to update it's contents. I'm using the following endpoint: …
AJC
  • 21
  • 3
0
votes
1 answer

Access to Stream's feed databases

Stream saves all the activities and follows on their databases in JSON format. However, I find the explorer provided in the dashboard unpractical and I'm wondering if I can access the databases externally, outside of the dashboard to make some…
user9283644
0
votes
1 answer

getstream stream_rails activity_owner_id not found for a particular model on destroy

I have setup a following follower relationship just as mentioned in Michael Hartl's Rail Tutorial. And I am using getstream to generate notifications whenever a user gets followed class Relationship < ApplicationRecord belongs_to :follower,…
0
votes
1 answer

How to use the GetStream.io API FrontEnd code to create a mobile app (based on a WebApp built with GetStream.io)?

Does GetStream.io allow building a frontend-only app? Can I use the frontend code (for UX/UI) of GetStream.io to create a ionic frontend mobile app? If it's not possible what should I do to build a frontend mobile app using GetStream.io (I'll…
0
votes
0 answers

Why am I not able to see any data on getstream.io's explorer

I've created an app called Blog on my Getstream.io account and also created a feed group called users but I'm not able to see any data on the explorer section of GetStream.io after running this code. What could be the issue? $client = new…
JSONBorne
  • 11
  • 1
  • 3
0
votes
1 answer

New activities with old time appears as new activities

I had to delete and re-add some activities. Details: GROUP_AGGREGATED follows GROUP I deleted all GROUP_JOIN activities from feed GROUP. Then re-added all of them with some changes, but I didn't change the time. GROUP_AGGREGATED had other…
Shaharyar
  • 12,254
  • 4
  • 46
  • 66
0
votes
1 answer

Retrieving "to" field in GetStream.io

Returning to some code from a year or more ago, I find that the "to" field is not being returned when getting a user feed or flat feed. This appears to be the case using both the realtime javascript client and the Python library. The field is…
Ken
  • 53
  • 7
0
votes
0 answers

How add follow button to profile in django getstream

I try to add follow button in django with Getstream.io app. Following the getstream tutorial, django twitter, I managed to create a list of users with a functioning follow button as well as active activity feed. But when i try add follow button on…
0
votes
1 answer

GetStream.io - Non authenticated user activity

I'm using GetStream's Laravel integration (github.com/GetStream/stream-laravel) but noticed that 'actor' is just a swappable Model. I'm trying to allow logged in users to post, but I want to allow "anonymous" (unauthenticated) users to like the post…
0
votes
1 answer

Divide by 6 hours in jinja date format

I have time string which represents a time in ISO8601 format. The formula to format to a date: {{ time.strftime('%Y-%m-%d') }} Current output: time = 2018-01-23T08:11:58.000000 output: 2018-01-23 I want to divide it in 6 hours spans: time =…
Shaharyar
  • 12,254
  • 4
  • 46
  • 66
0
votes
1 answer

Stream - Get activities from a stream of type 'notification' without aggregation

When a stream of type "notification" is created it has a default aggregation format of: {{ verb.id }}_{{ time.strftime('%Y-%m-%d') }} Maybe I am getting this wrong, but when trying to get the latest activities like so: const user =…
Yaron Levi
  • 12,535
  • 16
  • 69
  • 118