我正在尝试在 PHP 脚本上使用RetroFit2
并OkHttp3
执行 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);
}
我得到一组空括号。