httpClient httpPost til PHP
Hejsa.Jeg har et stort problem med at læse data i PHP sendt fra android app.
JSONObject location = new JSONObject();
location.put("latitude", l.getLatitude());
location.put("longitude", l.getLongitude());
location.put("accuracy", l.getAccuracy());
location.put("speed", l.getSpeed());
location.put("recorded_at", l.getRecordedAt());
params.put("location", location);
StringEntity se = new StringEntity(params.toString());
request.setEntity(se);
request.setHeader("Content-type", "application/json");
HttpResponse response = httpClient.execute(request);
Log.i(TAG, "Response received: " + response.getStatusLine());
ALT FINT, men i min PHP har jeg forsøgt alt og kan ikke finde parametrene, som om $_POST er tom.
Kan I hjælpe?