Client-ID will be required in August

I am not getting the “identified” value, either True or False, back when making requests in Python to the “kraken” endpoint, while supplying the client id value.

https_request(
    "api.twitch.tv",
    "GET",
    "/kraken/user",
    { "Accept":        "application/vnd.twitchtv.v3+json",
      "Authorization": "OAuth " + accessToken,
      "Client-ID":     CLIENT_ID }

Reply

{
  "_id": 00000000,
  "_links": {
    "self": "https://api.twitch.tv/kraken/users/XXXXXXX"
  },
  "bio": null,
  "created_at": "XXXXXXX",
  "display_name": "XXXXXXX",
  "email": "XXXXXXX",
  "logo": null,
  "name": "XXXXXXX",
  "notifications": {
    "email": false,
    "push": false
  },
  "partnered": false,
  "type": "user",
  "updated_at": "XXXXXXX"
}