I have a Chrome extension which lists which of a user's favorite channels are online. It works well, but I am seeing two issues with the:
API
First, when I call the API, I am getting 100 channels at a time, I am seeing response times on average of about 3 seconds (this seems slow). For comparison, the streams API is returning in about 300 to 500 ms.
This is a particular issue since you may have to make multiple calls to the API to retrieve all of the channels that a user is following.
Second, the API will randomly return a completely empty response.
Here is an example call which returned an empty response:
Request URL:
- Request Headersview source
-
Accept:
application/json, text/javascript, */*; q=0.01
User-Agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
- Query String Parametersview sourceview URL encoded
-
limit:
100
offset:
100
-
_:
1372834621526
Again, the call normally works, but I randomly get an empty response.
I have code to work around this, but wanted to post here in case the API team can use it to track down any issues.
mike