Getting A Track By ID

Wraps around this Spotify API endpoint

How to use

Spotifys.Tracks.GetTrack() will get a track object by its Spotify ID.

Returns a Track Object which can then be used for the methods outlined on this page.

Example

This example will:

A) Get a track with Spotify.Tracks.GetTrack() by the track's Spotify ID

C) Save the track with the .Save() method.

GoodSongIMO := Spotify.Tracks.GetTrack("4A6eJ3gOmVdD7C69N3DC7K")
GoodSongIMO.Save()