Add an endpoint to fetch statuses by IDs in a batch
As per @hj and @wyatt777 request (pleroma-fe#581).
Maybe GET /api/v1/statuses/?ids[]=1&ids[]=2
(returns array of Status)?
The only problem could be with IE (sigh) since it limits URL to 2,083 characters. According to my calculations, we can safely fit up to 72 ids into URL. Would it be enough?
Another option would be to add something like POST /api/pleroma/get_statuses
with status ids in the request body.