trustcafe-api-wrapper/jobs/feed/following.py
2026-03-31 22:42:41 +01:00

9 lines
274 B
Python

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