3

我正在尝试在 PHP 脚本上使用RetroFit2OkHttp3执行 POST 方法。我一直在完美地执行 GET 方法,但我在发布时遇到了问题。

我有一个我的HttpLoggingInterceptor设置OkHttpClient,它完美地记录了请求正文。但是我的 PHP 脚本没有接收到数据,所以我$_POST一得到数据就尝试输出,但它是一个空字符串。我无法判断 Android 端、服务器端或两者是否有问题。

我的RetroFit对象和OkHttpClient设置如下:

HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);

OkHttpClient client = new OkHttpClient.Builder()
        .cookieJar(RestCookieJar.getInstance())
        .addInterceptor(interceptor)
        .build();

Gson gson = new GsonBuilder()
        .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES)
        .registerTypeAdapter(Instant.class, new InstantAdapter())
        .registerTypeAdapter(LatLng.class, new LatLngAdapter())
        .registerTypeAdapter(Uri.class, new UriAdapter())
        .create();

Retrofit retrofit = new Retrofit.Builder()
        .addCallAdapterFactory(RxJavaCallAdapterFactory.create())
        .addConverterFactory(GsonConverterFactory.create(gson))
        .client(client)
        .baseUrl(BASE_URL)
        .build();

RestService service = retrofit.create(RestService.class);

然后我的RestService界面是这样设置的:

public interface RestService {

    @GET("api/index.php")
    Call<List<Session>> getSessions();

    @POST("api/index.php")
    Call<ResponseBody> postSession(@Body Session session);
}

正如我所提到的,这一切似乎都有效,但是当我打电话时:

<?php

    if($_SERVER['REQUEST_METHOD'] === 'POST') {
        print_r($_POST);
    }

我得到一组空括号。

4

1 回答 1

4

我在这里找到了答案:php $_POST array empty upon form submit。Retrofit 自动将 设置Content-Type"application/json; charset=UTF-8",在 PHP 5.0 - 5.19 版本中,有一个错误导致请求正文无法解析到$_POST变量中。我使用的服务器正在运行 PHP 5.10(我无法控制)。

此错误的解决方法是自己从原始请求正文中解析 JSON 数据:

if($_SERVER['CONTENT_TYPE'] === 'application/json; charset=UTF-8') {
    $_POST = json_decode(file_get_contents('php://input'));
}
于 2016-04-11T18:21:22.633 回答