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.