Hello! I’ve been a long time player, fan, and stockholder. I have been interested in building iOS Apps for Blizzard games for a while now. I have been putting it off until recently, due to the API migration.
One of the things I wanted to tinker with was a WOW Item Browser app. I got excited when I saw the list of Item APIs because it sounded perfect for this use case.
My POC app starts with a list showing Item classes (using /data/wow/item-class/index). When you tap an item class, I load that item class to display it’s item subclasses (using /data/wow/item-class/{itemClassId}).
The problem I run into is when I load an item subclass (using /data/wow/item-class/{itemClassId}/item-subclass/{itemSubclassId}). The response for this route is extremely minimal. I was expecting that I would be returned a list of items in the item subclass, but instead I get the same exact data that is returned for this subclass that I already had from the Item Class response.
Onto My Questions:
-
I’m struggling to see the point of this API call in it’s current state. Is it fully implemented?
-
Is there another way to see the list of items in an item subclass?
Cheers!
Jeff