Application Engine: no api in explorer

I am trying to use Google Plugin to create a web API, as shown in this video:

Creating a web API for Android from 26:50 to 39:40

I need a database for my Android application and try to use Google endpoints for the clouds, but I can not do it after this video. I searched for more than one day to find out what I am doing wrong.

When I launch the web application,

http://localhost:8888/_ah/admin/datastore?kind=message 

look good and i can insert data using curl

eg:

curl -H 'Content-Type: application/json' -d ' { "msMsg" : "my message!", "id" : 1 } ' http://localhost:8888/_ah/api/msgendpoint/v1/msg

But when I do

http://localhost:8888/_ah/api/explorer

I get this:

HTTP ERROR 404
Problem accessing /_ah/api/explorer. Reason:
     NOT_FOUND
+5
source share
1 answer

You may need to deploy the application for this URL to work. Alternatively, you can try going to the following URL:

https://developers.google.com/apis-explorer/?base=http://localhost:8888/_ah/api

URL- Discovery ( ) API- API API.

+5

All Articles