-
Hello! Is there a recommended approach for handling rate limiting using out-of-the-box features? I was hoping to use
Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hello! So use more low level one: client = Client()....
client.app.bsky.feed.get_author_feed(
models.AppBskyFeedGetAuthorFeed.Params(actor=actor, cursor=cursor, filter=filter, limit=limit),
retry=httpx.Retry(.......),
) Unfortunately, I do not see available |
Beta Was this translation helpful? Give feedback.
-
Thanks @MarshalX . You're right that the I'll explore what other options there are, and update in this thread if/when I find something. Thank you. |
Beta Was this translation helpful? Give feedback.
-
For others, I ended up using
Seems to work well enough!
|
Beta Was this translation helpful? Give feedback.
hi, checks this one. it will help you to pass your transport: #467 (comment)