Skip to content Skip to sidebar Skip to footer

Google Clould Endpoint Api Method Generated Without The Required Parameter

I want to deploy v2 of my google endpoint API. in this version 2, i have added an ApiMethod with a parameter /** * An endpoint class we are exposing */ @Api( name = 'myApi',

Solution 1:

This error may caused by your inheritance. Please read the following documentation

https://cloud.google.com/appengine/docs/java/endpoints/multiclass

It says that you have to use the same values for your annotations. You tried to override the values for Version and package. This can lead to undefined behaviour

Post a Comment for "Google Clould Endpoint Api Method Generated Without The Required Parameter"