Michael Domanek
Michael Domanek
no every time other ids and sometimes it doesn't happen and sometimes e.g 5 request fail (avg. 2-6 requests fail)
Hello @adamint thanks for looking into it. This is my Stacktrace: [Stacktrace.txt](https://github.com/adamint/spotify-web-api-kotlin/files/8499957/Stacktrace.txt) I edited my comment because yesterday I thought it was a Java 17 problem and changing sdk solved...
I created a new sample project to test it: [kotlin-gradle-example](https://github.com/michaeldomanek/kotlin-gradle-example) The Stacktrace is from here if you want to look at it.
@KathyGCY I wanted to try out `get_track_url_info()` I added `string = unquote(string)` to `_str_to_json` and `get_track_url_info()` works now ```python def _str_to_json(string: str) -> dict: string = unquote(string) json_acceptable_string = string.replace('\n',...
I used `from urllib.parse import unquote` I cloned the project and checked the example again and it works for me, maybe wrong import But I think the [offical spotify API](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-track)...