Hello, how would I get "url" out of Json like this with kotlin:``` {
"meta": {
"status": 200
},
"response": {
"hits": [
{
"highlights": [],
"index": "song",
"type": "song",
"result": {
"url": "https://genius.com/Lucidious-changes-lyrics",```
stackoverflow 1
t
tseisel
06/19/2019, 2:35 PM
That's not a Kotlin-specific question.
You need to use a Java JSON library, the most used are Gson and Jackson.
Or maybe you'd like to know if such libraries exist in pure Kotlin ?