POST запрос в PHP из OkHttp
Код в приложении Андроид
RequestBody formBody = new FormBody.Builder()
.add("Message", "Hello")
.build();
Request request = new Request.Builder()
.url("http://example.com/test.php")
.post(formBody)
.build();
OkHttpClient client = new OkHttpClient();
Call call = client.newCall(request);
Response response = null;
try {
response = call.execute();
String serverResponse = response.body().string();
// Do something with the response
} catch (IOException e) {
throw new RuntimeException(e);
}
код в принимающем PHP
<?php
$Message=$_POST['Message'];
echo $Message;
?>
Библиотека OkHttp v 4.12.0. После выполнения кода в test.php ничего не приходит. Приложение вылетает. Помогите разобраться