My application depends on logging in to Google. Suddenly, the GoogleAuth.then() method ceases to call its callbacks today. This code does nothing (does not print any result):
gapi.auth2.init({ client_id: 'MYID.apps.googleusercontent.com', scope: 'profile email' }).then(function() { console.log("success called"); }, function() { console.log("failure called") });
This code does nothing, although using other methods for polling signin (for example, creating listeners on isSignedIn and currentUser) works correctly.
Our code has not changed, but this breakdown seems to be slowly moving along our customer base in what seems vague, like Google doing some kind of rolling deployment. At the moment, this problem is a couple of hours. It stops working on my laptop, but still works on my phone. A number of our customers around the world experience different results.
Is this a Google bug? How to report this to someone?
source share