Let's say i want my default.aspx
page to present the content of www.google.com
(for example).
Is it a Redirect? or can it be "Embedded"?
The goal is to see the content of the Web page, and get a response from it.
In more details, I want to authenticate a user according to GoogleDrive SDK.
I ALREADY have the Auth Url from another place.
So here I want to run this Url, wait for the user to accept the app, and to receive the response tokens (Access token, Refresh token) from the Google authorization page.
I hope I could explain it clearly.
*I must say, the whole auth process is working well in WinForms, but I need to split the process. I'm getting the Url from there, but need to get the response in a different webform app.
Is it possible?