trustcafe-api-wrapper/jobs/feed/following.py
2026-03-31 23:13:08 +01:00

11 lines
349 B
Python

def followingfeed(API, lastEvaluatedKey=None):
"""
List all of a token's user's feed items from the users and branches they are following.
Returns:
A list of feed items.
"""
feed = API.make_request("GET", "audrey", "feed/following", authenticate=True, query_params=lastEvaluatedKey)
return feed