send data form hybrid android app to simple website in google app engine using json -
i have hybrid android app build html5 , javascript , , want send data using json ajax jquery web site in google app engine . can please give me tutoriel .
the function 'go' used in hybrid android file.js app when click on button :
function go() { $.getjson('website.com', { }).done(function( data ) { $.each(data, function (key, field) { alert(key + " : " + field); }); }); return false; } now. want simple data url above website deployed in google app engine ... don't know how .
please tutorials ..
check out google app engine endpoints: https://developers.google.com/appengine/docs/java/endpoints/
this makes easy create app engine apps android developers.
Comments
Post a Comment