Song lookup #854
Song lookup
#854
Replies: 1 comment
-
You will have to use the search endpoint and use the best matching song or let the user select. var spotify = new SpotifyClient("YourAccessToken");
const results = await spotift.Search.Item(SearchRequest.Types.Track, "Song Name")
// iterate through results.Tracks.Items to use best matching song |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently programming a smart mirror. I want to be able to have the user say what song they want to play. How do I get the track ID from the song that they request instead of the other way around? (I have to use SpotifyAPI-NET 5.1.1, my visual studio will not let me upgrade my .NET to higher than 4.7 for some reason.)
Beta Was this translation helpful? Give feedback.
All reactions