I have Wpf desktop application from which i am redirecting user to login to third party website (which use two step authentication). After user logs in third party website returns unique code to the call back url mentioned. Let's say if the callback url is any api call, it will return the code to that api call.
But here in my case the website is called from wpf app by using Process.Start("third party url"). Is there any way i can make third party website to return the unique code to wpf app ?? Basically I need to provide third party, a callback uri which i can detect in wpf app.
I am not sure what i am asking is even possible in wpf. if i had a any website this two step authentication would be so much easier but not sure how to do it in wpf.
Xero(third party) has provided here to do this by using httpListener but it's not working
Help !