public string GetAuthorize()
        {
            List <SpotifyConstants.SpotifyScopes> scopes = new List <SpotifyConstants.SpotifyScopes>();

            scopes.Add(SpotifyConstants.SpotifyScopes.UserLibraryRead);
            return(spotifyClient.GetAuthorizeUrl(scopes, helperMethods.GetRandomString(32)));
        }