justintv / Twitch-API

A home for details about our API
www.twitch.tv
1.72k stars 381 forks source link

Get User Follows response missing _total #670

Open Ollee opened 7 years ago

Ollee commented 7 years ago

API documentation states for the /users/<user>/follows/channels response to expect _total in the response, but request with Postman just has the follows list.

https://dev.twitch.tv/docs/v5/reference/users/#get-user-follows

Expected:

{
   "_total": 27,
   "follows": [
      { ...

Actual:

{
  "follows": [
    { ...

Should I be expecting _total or should I plan on it not being there?

Decicus commented 7 years ago

Seems to be there in both API v3 and v5 for me. Although, _total does seem to show up at the end of the returned object, rather than the beginning, which is what the docs imply.