You did not indicate whether you are using Python or Java.
, . Google App Engine. Java , . . Java EE. - (SOAP, RESTful) , , . Google .
, POST. , ( GAE) - :
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
String value1 = request.getParameter("value1");
}
Android - :
DefaultHttpClient hc=new DefaultHttpClient();
ResponseHandler <String> res=new BasicResponseHandler();
HttpPost postMethod=new HttpPost("http://mywebsite.com/mappedurl");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("value1", "Value my user entered"));
postMethod.setEntity(new UrlEncodedFormEntity(nameValuePairs));
String response=hc.execute(postMethod,res);
, 1 " , ".
EDIT: Google Google Cloud Endpoints - RESTful- App Engine Android , App Engine, , , .