Is there a possibility to request mentions like requesting the AuthorFeed #1842
-
Hello, next to requesting the AuthorFeed, i'd also like to request all the posts containing a mention of "my" account. The only way i found so far is the notifications endpoint but this endpoint
In case there is no dedicated endpoint it would already help to have a filter possibility for the notifications endpoint against the Best Martin |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Great question! This is not a functionality in the Bluesky API ( Filtering the notifications based on cc: @pfrazee for thoughts/status on filtering notifications I think for your specific use-case the best option would be extending the post search API to allow a filter query on posts which mention a specific account. That would work for any account (which may have some moderation and harassment considerations to take in to account), and would likely handle complexities like handle/DID changes. The whole team is pretty focused on large tasks related to federation and scaling, and I would guess a new functionality like this is unlikely to get shipped until that is complete, unfortunately. I think you would need to iterate through the full notification feed, and then re-fetch any relevant mention records separately, for now. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to do this with |
Beta Was this translation helpful? Give feedback.
Great question!
This is not a functionality in the Bluesky API (
bsky.app
Lexicons) right now.Filtering the notifications based on
reason
has been requested by a couple folks and we'll probably add something there.cc: @pfrazee for thoughts/status on filtering notifications
I think for your specific use-case the best option would be extending the post search API to allow a filter query on posts which mention a specific account. That would work for any account (which may have some moderation and harassment considerations to take in to account), and would likely handle complexities like handle/DID changes.
The whole team is pretty focused on large tasks related to federation and scaling, an…