cloudendpoints / endpoints-python

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

Better error when request body found for GET/DELETE method. #178

Closed inklesspen closed 5 years ago

inklesspen commented 5 years ago

If a ResourceContainer has a positional argument, that is treated as a body message. But GET/DELETE requests can't take a request body. This raises an informative error; previously an uninformative KeyError was raised.

Fixes #167.