yamatt / humblebundle-python

An unofficial library for querying Humble Bundle
MIT License
0 stars 0 forks source link

Order list fails on looking up product #1

Open yamatt opened 10 years ago

yamatt commented 10 years ago

This is because the API has changed so that when you get your orders you simply get an ID and to get a product that needs to be processed separately. I suspect so HB looked cooler with their slow loading orders page.

saik0 commented 10 years ago

They drastically changed the response of the api, whats the point of calling it /api/v1 if you're going to do that. Ugh.

I need to think about what to do here, I'll probably deprecate the method and some models. Tracking the issue upstream at saik0/humblebundle-python#5

yamatt commented 10 years ago

Yeah, wtf is up with the /v1 if it isn't versioned? I imagine it'll be because it's an unpublished API.

Anyway, sounds like a plan. I'll leave it in your capable hands. You've done a great job with it so far, really easy for me to extend.

I liked that you used the requests library too. Before I found your library I was building my implementation using that too. It's pretty awesome.