[Feature Request] HTTP HEAD

#1 - Oct. 19, 2014, 3:18 p.m.
Blizzard Post

Could we get support for the HEAD verb? Sometimes I just want to retrieve the X-Page headers for any given page_size.

https://ochronus.com/http-head-request-good-uses/

pseudo code:


headers = HTTP_HEAD("/v2/items?page_size=42");

page_count = headers  ["X-Page-Total"];

for (index = 0; index < page_count; index++) {
    page = HTTP_GET("/v2/items?page_size=42&page=" + index);
}
#2 - Oct. 20, 2014, 5:28 p.m.
Blizzard Post

I’m not opposed to this, but it’s not high on our priority list for the APIs at the moment.