HttpURLConnection отправка запроса JSON POST в Apache / PHP
Я борюсь с HttpURLConnection и OutputStreamWriter.
код фактически достигает сервера, так как я получаю действительную ошибку ответ. Запрос POST сделан, но данные не получены серверный.
любые намеки на правильное использование этой вещи высоко ценятся.
код находится в AsyncTask
protected JSONObject doInBackground(Void... params) {
try {
url = new URL(destination);
client = (HttpURLConnection) url.openConnection();
client.setDoOutput(true);
client.setDoInput(true);
client.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
client.setRequestMethod("POST");
//client.setFixedLengthStreamingMode(request.toString().getBytes("UTF-8").length);
client.connect();
Log.d("doInBackground(Request)", request.toString());
OutputStreamWriter writer = new OutputStreamWriter(client.getOutputStream());
String output = request.toString();
writer.write(output);
writer.flush();
writer.close();
InputStream input = client.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
StringBuilder result = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
result.append(line);
}
Log.d("doInBackground(Resp)", result.toString());
response = new JSONObject(result.toString());
} catch (JSONException e){
this.e = e;
} catch (IOException e) {
this.e = e;
} finally {
client.disconnect();
}
return response;
}
JSON, который я пытаюсь отправить:
JSONObject request = {
"action":"login",
"user":"mogens",
"auth":"b96f704fbe702f5b11a31524bfe5f136efea8bf7",
"location":{
"accuracy":25,
"provider":"network",
"longitude":120.254944,
"latitude":14.847808
}
};
и ответ, который я получаю от сервер:
JSONObject response = {
"success":false,
"response":"Unknown or Missing action.",
"request":null
};
и ответ, который я должен был получить:
JSONObject response = {
"success":true,
"response":"Welcome Mogens Burapa",
"request":"login"
};
серверный PHP-скрипт:
<?php
$json = file_get_contents('php://input');
$request = json_decode($json, true);
error_log("JSON: $json");
error_log('DEBUG request.php: ' . implode(', ',$request));
error_log("============ JSON Array ===============");
foreach ($request as $key => $val) {
error_log("$key => $val");
}
switch($request['action'])
{
case "register":
break;
case "login":
$response = array(
'success' => true,
'message' => 'Welcome ' . $request['user'],
'request' => $request['action']
);
break;
case "location":
break;
case "nearby":
break;
default:
$response = array(
'success' => false,
'response' => 'Unknown or Missing action.',
'request' => $request['action']
);
break;
}
echo json_encode($response);
exit;
?>
и выход logcat в Android Studio:
D/doInBackground(Request)﹕ {"action":"login","location":{"accuracy":25,"provider":"network","longitude":120.254944,"latitude":14.847808},"user":"mogens","auth":"b96f704fbe702f5b11a31524bfe5f136efea8bf7"}
D/doInBackground(Resp)﹕ {"success":false,"response":"Unknown or Missing action.","request":null}
если я добавить ?action=login
до URL
Я могу получить успешный ответ от сервера. Но только действие параметр регистрирует серверную сторону.
{"success":true,"message":"Welcome ","request":"login"}
вывод должен заключаться в том, что никакие данные не передаются URLConnection.write(output.getBytes("UTF-8"));
Ну, данные все-таки передаются.
решение, предлагаемое @greenaps, делает трюк:
$json = file_get_contents('php://input');
$request = json_decode($json, true);
PHP скрипт выше обновлен, чтобы показать решение.
3 ответов
echo (file_get_contents('php://input'));
покажет вам текст json. Работайте с ним так:
$jsonString = file_get_contents('php://input');
$jsonObj = json_decode($jsonString, true);
попробуйте использовать DataOutputStream вместо OutputStreamWriter.
DataOutputStream out = new DataOutputStream(_conn.getOutputStream());
out.writeBytes(your json serialized string);
out.close();
Я создал сервер скажи мне, что он получил от меня.
заголовки запросов и тело сообщения
<?php
$requestHeaders = apache_request_headers();
print_r($requestHeaders);
print_r("\n -= POST Body =- \n");
echo file_get_contents( 'php://input' );
?>
работает как шарм)