0

I'm experimenting with the getstream.io service, and evaluating if it fits our use case. Basically what I would like to to is for one server side service to add activity to a feed, and then for another server side code to subscribe to changes to that feed, and receive them in real time. Both should be in C# ideally.

Is this possible at all?

dabs
  • 727
  • 1
  • 7
  • 23

1 Answers1

0

Definitely possible, you can add a webhook from the dashboard which will get the update as soon as there is a change in the feed.

If you're on AWS, you can copy updates to your SQS.

Moreover, Faye is also used for real-time updates. You can find a client for it in C# but it won't officially be supported (we're supporting it in JS SDK for example).

ferhatelmas
  • 3,818
  • 1
  • 21
  • 25