get_author_feed through different times #462
-
I understand that we can't get more than 100 entries from get_author_feed, that is okay. Is there a way to get the posts from an author that aren't in the most recent 100? For example the oldest 100, or 100 in the middle. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
MarshalX
Nov 24, 2024
Replies: 1 comment
-
Why we can't get more than 100 entries? 100 is default "per page". Such endpoints should use pagination mechanism. See the example how to deal with it: https://github.com/MarshalX/atproto/blob/main/examples/advanced_usage/handle_cursor_pagination.py |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MarshalX
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why we can't get more than 100 entries? 100 is default "per page". Such endpoints should use pagination mechanism. See the example how to deal with it: https://github.com/MarshalX/atproto/blob/main/examples/advanced_usage/handle_cursor_pagination.py