Rank: Advanced Member Groups: Member
Joined: 5/9/2016 Posts: 84
|
I am doing some Google Auth in webbrowser. Basically the flow is that I am sent to google address that then redirect to the local address and port that I have specified. In my case http://localhost:9999
The url might look like this:
https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=787515629986-i03l12vck509aeg4e7ta6u8jc5sh8qf7.apps.googleusercontent.com&redirect_uri=http%3A%2F%2Flocalhost%3A9999&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive
This port is open and I can do the same redirect in external browser like Chrome. But in EO.WebBrowser I get error:
ErrorCode ConnectionRefused {-102} EO.WebBrowser.ErrorCode ErrorMessage "A connection attempt was refused."
Is there any security setting preventing EO.WebBrowser from doing this?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,344
|
Hi,
This has to do with Google and we have no way of telling you what they are not happy about. The initial connection to accounts.google.com should always succeed --- however the authentication step can fail and can cause Google to refuse further connection, or for some reason the next server (apps.googleusercontent.com) could refuse the connection and the refusal got propagated back to you. I would suggest you to compare the traffic between regular Chrome browser and EO.WebBrowser to see if you can find the difference. This should not have anything particular to do with EO.WebBrowser.
Thanks!
|