Skip to content Skip to sidebar Skip to footer

Google Oauth2 Javascript Client Not Working In IE 9

Although the following code works correctly using Chrome (shows a popup that requests permission from the user to allow access to map and places data), IE 9 opens the popup form, b

Solution 1:

What ending up solving this issue was increasing the setTimeout duration to 1000 from 10. The Google authorization pop-up was displayed with the correct sing-in information, rather than a blank screen.


Solution 2:

It's possible that cross-origin scripting between the client web application and Google is blocked by zone security.

Please ensure that both google.com and the webpage where the script is running fall into the same security zone (Internet Zone, typically.) If you aren't sure, see serverfault#612903 https://serverfault.com/questions/612903/ie11-how-to-check-into-which-zone-a-url-falls

Also ensure that the zone in which the web application and Google are classified is configured to allow script execution and ensure third-party cookie access is allowed for google.com as this is used to check for authorization.


Solution 3:

Note that the maps/feeds scope you are using is for the deprecated Google Maps Data API, which is not the same thing as the Places API

Regarding your actual question, I am retagging to replace Places API with the Plus API since that is what you are using here.


Post a Comment for "Google Oauth2 Javascript Client Not Working In IE 9"