You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@rei-gun You have to write .WithUserId(userId) after .WithReaction(...)
So it would be var results = await feed.GetEnrichedFlatActivities(GetOptions.Default.WithReaction(ReactionOption.With().Counts().Own()).WithUserId(userId));
Change userId to the user's feed name. It would be feedGroupName:UserId
You should already know the feed group, (it might be user) and the user ID is the user ID of the user you are retrieving data for. (ex. user:123)
var results = await feed.GetEnrichedFlatActivities(GetOptions.Default.WithReaction(ReactionOption.With().Counts().Own()));
CMIIW but the
OwnReactions
IEnumerable i get fromresults
, includes reactions from UserIds that are not the same as the owner of the FeedGroup.The text was updated successfully, but these errors were encountered: