3

I'm playing around with getstream.io, it's an amazing tool but I have a question regarding realtime updates.

I am connected to realtime updates of a feed via Javascript (simply following examples from getstream.io).

feed.subscribe(callback)

Which works beautifully, adding and removing activities to the feed triggers the callback function. However if I (via python) update an activity of a feed.

e = feed.add_activity(editable)
e['content'] = 'Ooops'
client.update_activity(e)

I see that the update was successful if I call feed.get() but I don't get a realtime notification in Javascript, shouldn't I? Am I doing something wrong?

4

1 回答 1

1

活动更新 API 不会触发实时更新通知。

于 2016-08-28T18:14:24.280 回答