cloudendpoints / endpoints-python

A Python framework for building RESTful APIs on Google App Engine
Apache License 2.0
51 stars 17 forks source link

Support matching path against REQUEST_URI (flag-enabled) #151

Closed inklesspen closed 6 years ago

inklesspen commented 6 years ago

In some cases, users may want to match paths against the escaped REQUEST_URI environment variable instead of the PATH_INFO variable. This allows ignoring escaped slashes %2F for purposes of path segment splitting.

This behavior must be enabled by using use_request_uri=True at the api or method level.