own reactions
See original GitHub issueProblem explanation
I expect to see only user’s own reactions, but instead I get all reactions, regardless of who they came from.
Steps to reproduce
feed = client.feed(‘user’, ‘alice’);
response = feed.get(limit=30, enrich=True, reactions: {“counts”: true, “recent”: true, “own”: true})
Environment info
Operating System: Python version: <!-- x.y.z (command: python --version) --> Library version:
Error traceback (if applicable)
[put traceback here]
Code snippet that causes the problem
feed = client.feed(‘user’, ‘alice’);
response = feed.get(limit=30, enrich=True, reactions: {“counts”: true, “recent”: true, “own”: true})
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Owning Your Emotional Reactions - Creative Dream Incubator
When you own your reaction, you hold your power. Usually, when we're triggered by something and get upset, we just want the upset...
Read more >Choose Your Own Reactions - Experience Life Magazine
“Our emotions have to go somewhere, so we can learn to use them wisely, which is what we call emotional intelligence,” says Brackett,...
Read more >Learning to control your own reactions and overreactions
If you find yourself reacting as if you were in fight or flight, it's time to get a grip on your emotional triggers...
Read more >Managing Your Emotional Reactions (for Teens) - Kids Health
Managing emotional reactions means choosing how and when to express the emotions we feel. People who do a good job of managing emotions...
Read more >Managing Your Own Reactions - Lee College
our Own. Reactions. Now. Some are Happy to be back in- ... symptoms of a stress reaction may last a few days, a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@francescov1 could you create an issue for node sdk on its repo?
FYI, you can pass whatever you want into
feed.get(options)
, only ts types might be missing.you have to specify the user_id when you read the feed (ie. different users can read the same feed)
make sure to pass
user_id="alice"
to feed.get