What HTTP method should I use if I want to query a collection for the given IDs that possibly go over 500 items. Like:
GET /api/v2.0/collection/?ids=1,2,3,4,5,6...
Query param is not gonna look good with over 500 items. and GET
doesn't have a Content-Size. POST
seems not a good fit since I'm just fetching the resources selectively. What would you great programmers do? Do you know any public example I can check?