Question

How do I discover the apis exposed by Cloud Endpoints when I deploy my project to google app engine, to say myapp.appspot.com

Was it helpful?

Solution

The easiest way is to look at the APIs Explorer: https://myapp.appspot.com/_ah/api/explorer, which will list the APIs served by your application (including the discovery API itself). You can experiment with the APIs in the Explorer as well.

OTHER TIPS

An other great testing method is the following, which can be used both at the deployed API and the one running on you local host: https://developers.google.com/apis-explorer/?base=https://yourAppName.appspot.com/_ah/api#p/yourAPIName/v1/

Remember to change the "base = https://..." to http://localhost:8888.... (or whatever port you are using) when using it on localhost and you must ofcourse replace yourAppName and yourAPIName with the correct entries for your project

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top