Example #1
0
        static async void DoThings()
        {
            PocketCastsApiService pocketCastsApiService = new PocketCastsApiService();

            try
            {
                await pocketCastsApiService.Login("*****@*****.**", "Basketball#1");

                List <Podcast> podcasts = await pocketCastsApiService.GetSubscribedPodcasts();

                //podcasts.ItemsSource = podcasts;
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
                int i = 88;
            }
        }