-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
track RealeaseDate #89
Comments
Is there a particular TrackID you are seeing this with or is it all tracks? If you could let me know what version of E.Deezer you are using it would also be a big help. |
No all tracks, I use last version |
Unfortunately the Deezer API doesn't have the release date property in any of the returned JSON, either in Playlist/[ID] or Playlist/[ID]/tracks. There's not really anything I can do here except for requesting Deezer change the API. However, in the most recent changes in V5 (currently in alpha) the release date returns NULL in this case. It's a bit better than 01/01/2001 but still not ideal. |
Hi, Sorry for the late response... It would be possible to use the Search.Track function and then search the data of each track one by one with a GetTrackByID in this same function? For example: I chose to have a result with all the data so before returning the basic data it will replace the ITrackOld (without date) by a new ITrackNew with a call of the GetTrackByID() function. I can't compile your project, I'm missing NET packages. Framework... but I have a 200 Kb/s connection when it works so I can't test it by myself.... I guess the track search is done in the SearchEndpoint.cs file and then calls the FindTracks() function. I don't know if you really understand what I'm trying to do, but I'll try on my own if I can compile... Have a nice day! |
As far as I understand, you are looking to get as much information as possible on tracks regardless how you obtain them (Album tracklist, playlist tracklist, artist top tracks, search results etc).
This is entirely possible as you should be able to loop through the tracks, grabbing their ID and using the I'm a little hesitant to add this as an option to the library as I think this is something consumers will implement themsevles. A method on the |
Good morning, sir,
There is a problem when retrieving the date when using the GetTracks() function which retrieves the tracklist via a playlist.
returned value = 01/01/2001
The problem does not exist with the GetTrackById() function.
Provisional repair :
Retrieve the track id via the playlist then go through a GetTrackById()
The text was updated successfully, but these errors were encountered: