9 lines
274 B
Python
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
|