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
I am trying to use the .tagged method to get the 20 most recent posts with a certain tag. When I call the method though it seems to just return a list of random posts with that tag instead of the most recent ones. Other methods to retrieve posts such as .posts work just fine. Here is the code I am using:
client = pytumblr.TumblrRestClient(
'keys',
'keys',
'keys',
'keys'
)
response = client.tagged("art")
for i in response:
print(i['timestamp'])
print(i['post_url'])
I am trying to use the
.tagged
method to get the 20 most recent posts with a certain tag. When I call the method though it seems to just return a list of random posts with that tag instead of the most recent ones. Other methods to retrieve posts such as.posts
work just fine. Here is the code I am using:and here is the output:
Most of these posts are from 2015 and are months apart. Other tags have similar results.
The text was updated successfully, but these errors were encountered: