Skip to content Skip to sidebar Skip to footer

Domain Restricted Authentication On Google App Engine

I've recently deployed a GAE application (namely http://www.stashboard.org/) in order to help manage my company's application pool. In order not to publish the pool's status tout e

Solution 1:

In order to enable that and make it work, I think you'll have to add this Google App Engine app to your Google Apps domain dashboard. To achieve that you will have to manage the mycompany.com domain with Google Apps first. After that if you go to https://appengine.google.com > locate your app > Application Settings > Add Domain and follow the steps there.

Once you will see your GAE app in the Google Apps dashboard, you might also going to need to add some stuff in the app.yaml to be able to restrict your users:

-url:.*script:main.pylogin:required

After redeploying the app the access should be restricted to only your desired domain.

Post a Comment for "Domain Restricted Authentication On Google App Engine"