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:
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:
I get this:
HTTP ERROR 404
Problem accessing /_ah/api/explorer. Reason:
NOT_FOUND
source
share