private async Task <ResponseTrack> GetTracks(string url, string token)
        {
            var response = await _httpHandle.GetAsync(url, token);

            if (!response.IsSuccess())
            {
                HttpException.ThrowGetException(url, (int)response.StatusCode);
            }

            return(_jsonHandle.DeserializeObject <ResponseTrack>(response.GetDataString()));
        }