Home > google app > google app engine datastore admin error

Google App Engine Datastore Admin Error

Admin" opens Server error page 1 person starred this issue and may be notified of changes. Back to list Status: Invalid Owner: ---- Closed: Jul 2015 Type-Defect Priority-Medium Component-Adminconsole Component-Datastore Sign in to add a comment Reported by biste...@gmail.com, Jul 16, 2015 When I click "Open Datastore Admin" I get a page reading "Sorry, you've reached a login page for a domain that isn't using Google Apps." The domain is https://www.google.com/a/quickstep.socos.me/ServiceLogin?service=ah&passive=true&continue=https://appengine.google.com/_ah/conflogin%3Fcontinue%3Dhttps://ah-builtin-python-bundle-dot-socos-quickstep-601.appspot.com/_ah/datastore_admin<mpl=ga&shdf=ChULEgZhaG5hbWUaCVF1aWNrc3RlcAwSAmFoIhTvj92jpiZ4gthAdhPSDRMZ8HbZlCgBMhRQdQH5-DaOlyl98Jy1YC2KoW0YaQ When I try clicking "Open Datastore Admin" from other GAE apps, I get a page prompting me to specify which Google account I want to sign in with. Jul 29, 2015 #1 pvoutsi...@google.com Hi, This forum is really more for defect, not for 1-1 support, so I will be marking this issue as invalid (it's not a defect of the system per se). In any case, I would give this document a read through https://support.google.com/a/answer/33419?hl=en and make sure everything is properly done in there. If, after all these steps, you're still getting a login error because of something not configured in Google Apps, I would suggest trying your Google Apps support to try and make sure with them everything is proper. Good luck :). Status: Invalid Jul 29, 2015 #2 pvoutsi...@google.com (No comment was entered for this change.) Labels: Component-Adminconsole Component-Datastore ► Sign in to add a comment Terms - Privacy - Project Hosting Help Powered by Google Project Hosting

fails to load when application is using (experimental) Federated Login. 60 people starred this issue and may be notified of changes. Back to list Status: Fixed Owner: ---- Closed: Aug 2014 Type-Defect Priority-Medium Language-None Component-Adminconsole-DatastoreAdmin log-5260202 Sign in to add a comment Reported by nix...@gmail.com, Nov 22, 2010 Datastore Admin fails to load when application is using Federated Login. When the authentication setting https://code.google.com/p/googleappengine/issues/detail?id=12157 is switched to Google Account API, it then works. Here is the error message.... Error: Not Found The requested URL /_ah/login_required?continue=http://del-all.latest.spiral-plagiarism.appspot.com/_ah/datastore_admin/?app_id=spiral-plagiarism&kind=...&kind=_AE_MR_MapreduceState&kind=_AE_MR_ShardState&kind=_ah_SESSION&namespace= was not found on this server. Thanks, Jan 26, 2011 #1 sly...@google.com (No comment was entered for this change.) Status: Acknowledged Labels: Component-Adminconsole-DatastoreAdmin Jan 26, 2011 #2 sly...@google.com Issue https://code.google.com/p/googleappengine/issues/detail?id=4111 4411 has been merged into this issue. Mar 3, 2011 #3 tchan-it...@gtempaccount.com The 404 initially reported is probably because you need to add a handler for /_ah/login_required. Something like this: handlers: - url: /_ah/login_required script: login_required.py and this: #!/usr/bin/env python from google.appengine.ext import webapp from google.appengine.api import users import google.appengine.ext.webapp.util class LoginRequiredHandler(webapp.RequestHandler): def get(self): continue_url, = self.request.get('continue',allow_multiple=True) self.redirect(users.create_login_url()) def main(): application = webapp.WSGIApplication([('/_ah/login_required', LoginRequiredHandler),], debug=True) webapp.util.run_wsgi_app(application) if __name__ == '__main__': main() There is a second problem, which is what might be issue 4411 : Depending on whether you access via HTTP or HTTPS, the