I have a Google Sheet with a bound Google Apps Script (GAS) that creates a modal dialog box (popup) in HTML/JS as a user-friendly "frontend" to my Google Sheet, which is like a Database for Dummies.
It's been fine since I finished the current version a few months ago. All of a sudden, when it tries to make a server-side function call, the whole popup goes blank. The console log shows this error:
Refused to display 'https://accounts.google.com/ServiceLogin?service=wise&passive=1209600&conti…ndler%28loadFullItemLite%29.withUserObject%28this%29.sendAllItems%28%29%3B' in a frame because it set 'X-Frame-Options' to 'DENY'.
Note that loadFullItemLite() is a successHandler that runs withUserObject(this) when sendAllItems() returns the requested data (i.e. this).
The issue seems to be that it won't display a ServiceLogin page, not that it won't display my popup content. It's getting stuck trying to log into the Service, but what service? and why?
I have 3 users with 3 different Google accounts all running the same scripts in the same sheets with the same access levels. Please advise.