Background: I'm working within google apps script creating an extension for google sheets. I want to add oAuth.
The Issue: oAuth requires an authorized javascript origin. I get an error when attempting to login using the google sign in button saying uri redirect mismatch and gives a script.googleusercontent.com uri.
What I've tried: I add https://n-z2mpomgsi6mxzkdegvwhypizz4zxupdihnp6udy-0lu-script.googleusercontent.com from my redirect uri mismatch error to the list of authorized javascript origin uris in the developer console because stackoverflow said so. This gets oauth working fine and dandy.
The bigger issue: I go to access my program from another computer. oAuth doesn't work, I check the error and it's using a different script.googleusercontent.com uri in the error.
The Question: What uri can I add to authorized javascript origins to make google happy? (It does not accept wildcards ex. *googleusercontent.com).
