python 2.7 - Can't test my api on local server, always redirect to google api. After migrate to endpoints 2.0 -
all had on endpoints 1.0. i've done steps @ migrating 2.0 google docs. update project successfully, , can run endpoints api explorer. when try run endpoints api explorer locally (localhost:8080/_ah/api/explorer) it's redirect me google api explorer. app.yaml
application: graphofgroups version: 1 runtime: python27 threadsafe: true api_version: 1 handlers: - url: /static static_dir: static - url: / static_files: static/index.html upload: static/index\.html secure: - url: /js static_dir: static/js - url: /partials static_dir: static/partials - url: /.* script: main.app - url: /_ah/api/.* script: main.app libraries: - name: ssl version: latest - name: pycrypto version: latest - name: numpy version: "1.6.1" inbound_services: - mail builtins: - remote_api: on env_variables: endpoints_service_name: echo-api.endpoints.graphofgroups.appspot.com endpoints_service_version: [2017-04-06r0]
Comments
Post a Comment