I installed the Podio Async package into a Windows Forms App I created using Visual Studio 2019. I had set up the API Key in the settings and I can't get app to authenticate.
var podio = new Podio(clientId, clientSecret);
it seems to hang at
await podio.AuthenticateWithPassword("myPodioLoginEmailAddress","myLoginPassword");
Not sure how to test what's wrong. Also, I don't have a secure URL to test this with so, I set the return URL to localhost which was a suggestion I found on another post.