Hello -
I'd like to be a good Google netizen & support the PATCH method in my rest api.
When I use a route like this:
webapp2.Route(r'/v1/patch', handler='webHandlers.PatchHandler', handler_method='patch', methods=['PATCH']),
webapp2 just complains:
ERROR 2012-07-18 09:48:32,256 dev_appserver.py:2943] code 501, message Unsupported method ('PATCH')
How can I get PATCH supported?
ps. I need this to work on App Engine.
Thank you-
Matt