Here is app.yaml code
application: hellodashboard
version: 1
runtime: python
api_version: 1
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /oauth2callback
script: oauth2client/appengine.py
- url: .*
script: main.py
I wanted to know what does
- url: /oauth2callback
script: oauth2client/appengine.py
mean?
I know the second line indicate that there is a script called appengine.py in oauth2client directory.But what does url:/oauth2callback indicate.
It means that there is a handler in the
oauth2client/appengine.pyfile that handles requests to the url/oauth2callback