9 lines
232 B
Python
9 lines
232 B
Python
def cafefeed(API):
|
|
"""
|
|
List all of a token's user's feed items.
|
|
|
|
Returns:
|
|
A list of feed items.
|
|
"""
|
|
feed = API.make_request("GET", "audrey", "feed/foryou", authenticate=True)
|
|
return feed
|