Hey everyone, I’m working on a Spotify App and I’m stuck. I want to change how the playlist looks. Right now it shows the song title, artist, album, and time for each track. But I only want to see the song title, artist, and album. I’ve been trying to figure out how to get rid of the time field, but I can’t seem to do it. Does anyone know how to customize the playlist display in the Spotify App? I’d really appreciate any tips or advice on this. I’m not sure if it’s something in the settings or if I need to mess with the code. Thanks in advance for any help!
hey dude, spotify’s api can be tricky. have u tried messing with the playlist.tracks endpoint? u can specify the fields u want returned there. just exclude the duration_ms field and u should be good to go. might need to tweak ur code tho. lmk if u need more help!
yo, i had the same issue with my app. turns out you gotta dig into the API docs. theres a way to customize the playlist view using the metadata fields. you can choose which fields to display. check out the ‘track’ object in the API, should help ya out. good luck man!