Google App Engine Using Python – How to access page without login
Google App Engine Using Python2.7 Issues, Solutions And Techniques
How to allow to access page without login:
Some times user want to access access without giving login information i.e. cron jobs. For this purpose, app.yaml file need to update.
For Login Required:
– url: .*
script: main.app
secure: always
login: required
Without Login Required for a specified page:
– url: /page_name
script: main.app
secure: always
– url: .*
script: main.app
secure: always
login: required
Update “/page_name” where user want to avoid to login
Leave a Reply
You must be logged in to post a comment.