Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dlrudie/Snip

Snip will get the artist, track, and album information from Spotify and iTunes, and save the information to a text file.
https://github.com/dlrudie/Snip

Last synced: about 2 months ago
JSON representation

Snip will get the artist, track, and album information from Spotify and iTunes, and save the information to a text file.

Awesome Lists containing this project

README

        

To build Snip you'll need to create your own ApplicationKeys.cs file.

The contents of the file should be as follows.

```
namespace Winter
{
public static class ApplicationKeys
{
public static string SpotifyClientId = "";
public static string SpotifyClientSecret = "";
public static string Spotify = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", SpotifyClientId, SpotifyClientSecret)));
}
}
```