コード例 #1
0
        public async Task <IActionResult> Index()
        {
            var playlists = await _spotify.GetMyPlaylistsAsync();

            return(View(new SpotifyModel
            {
                Playlists = playlists
            }));
        }