appdotnet / api-spec

App.net API Documentation is on the web at https://developers.app.net. Source for these docs is in the new-docs branch here. Please use the issue tracker and submit pull requests! Help us build the real-time social service where users and developers come first, not advertisers.
https://developers.app.net
950 stars 98 forks source link

Notification of deleted posts #156

Closed nanek closed 12 years ago

nanek commented 12 years ago

I currently index the global stream to provide the search at http://appnet.herokuapp.com/search I need a way to determine which posts have been deleted, so that I can remove them from the index.

Is there an existing API endpoint that I can poll to get a list of the deleted post ids? If not, can some sort of API, RSS feed, or notification mechanism be implemented so that I, and presumably other similar services, can handle deleted posts properly?

coyled commented 12 years ago

I asked something similar in #32 ; no response yet. Right now the only way to get deleted posts is to fetch each post and see if is_deleted==true , which is what I'm doing for http://search.256.is

nanek commented 12 years ago

I'm moved my comment to Issue #32 so I'm closing this ticket as a duplicate of that issue.