I currently have a side project React Native app running everything through Firebase. I want to add a social feed. I've been able to use getstream in client mode by turning off the debugger, but after a day without the debugger I've realized that's unacceptable. So my options are:
Put the getstream related code in Firebase Functions:
get
: This really could be on any serverfollow
/unfollow
- Trigger from database updateaddActivity
- Trigger from database update
- Write my own social feed code using Firebase. I hate reinventing the wheel and I think getstream would make potential future features like notification/aggregated feeds easier.
I was able to use Firebase Functions to generate the secret feed tokens. If only I could use the Chrome Debugger with getstream. It seems like I'm not in a very unique position and this should be supported.