I want to create an endpoint similar to this:
POST /someresource:validate
Based on Google API Guideliness for custom methods.
But when I add it I get this error:
Exception in thread "main" java.lang.IllegalArgumentException: pathPattern: /someresource:validate (invalid pattern)
I think this happens because of Path Pattern syntax. Is there a way to configure so we can disable some syntax options so we can use :
inside url names? Or is there another way.