Hi, I am trying to set a section of my application as limited to admin
access only.
When I goto the the protected URL, I get the google login page -
instead of the login page for my google apps account. If I try to
login with my google apps account (which is administrator for the app)
I am told it's the wrong email/password combo.

How can I access the admin-only areas of my app?

Here is my App.yaml file:

application: myapp
version: 1
runtime: python
api_version: 1

handlers:

- url: /DI2/(.*)
  static_files: DI2/\1
  upload: DI2/(.*)
  login: admin

- url: /
  static_files: static/welcome.html
  upload:  static/welcome.html

- url: /
  static_dir: static

- url: /(.*)
  static_files: static/\1
  upload: static/(.*)


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to