Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Endpoint at "/" Method does not exist

{
 "code": 5,
 "message": "Method does not exist.",
 "details": [
  {
   "@type": "type.googleapis.com/google.rpc.DebugInfo",
   "stackEntries": [],
   "detail": "service_control"
  }
 ]
}

My Cloud Endpoints deployment seems to work fine except when trying to load the root path (at "/"). The endpoint appears in the console, but trying to load it outputs the error above.

I've searched all over but can only find one reference to it anywhere (on mobile now but will add it here when I find it again).

like image 266
Jason Hill Avatar asked Jan 16 '18 07:01

Jason Hill


1 Answers

Google Cloud Endpoints does not currently support the root path at "/". The documentation will be updated to reflect this soon. https://cloud.google.com/endpoints/docs/openapi/openapi-limitations

like image 127
Wesley Wong Avatar answered Oct 17 '22 04:10

Wesley Wong