Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 456 Bytes

README-DEVS.md

File metadata and controls

15 lines (13 loc) · 456 Bytes

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)));
    }
}