bluesky_cli limits (max 100) - counting members of a list #981
-
Hello, i am probably not familiar enough with the AT protocol and was not able to answer the question with what i have read about it. Any hints or workarounds for counting members of a list are also welcome :) Thank you and best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @kesma01! If you use First, you can get a list of specific ACTOR listings as follows: bsky lists --actor=shinyakato.dev You can then use the URI in the bsky list --uri=at://did:plc:iijrtk7ocored6zuziwmqq3c/app.bsky.graph.list/3katlozdqmh2p To specify limit and cursor in this case, you can do the following: bsky list --uri=at://did:plc:iijrtk7ocored6zuziwmqq3c/app.bsky.graph.list/3katlozdqmh2p --limit=100 --cursor=1696324904535::bafyreiafaxy4lhmyyqsx4lxfespwdosm6fy36zqggycrd4z2wzs2ti2zo4 Let me know if you need a more detailed description for your app's use case! |
Beta Was this translation helpful? Give feedback.
Hi @kesma01!
If you use
bluesky_cli
to count all the members of a list, you should use both limit and cursor.First, you can get a list of specific ACTOR listings as follows:
You can then use the URI in the
uri
field of the result of the above command to get the members of the list as follows:To specify limit and cursor in this case, you can do the following:
Let me know if you need a m…