我有此代码:
JSONParser jsonParser1 = new JSONParser();
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("url")
.build();
Call call = client.newCall(request);
call.enqueue(new okhttp3.Callback() {
@Override
public void onFailure(Call call, IOException e) {
//observe reason of failure using
e.printStackTrace();
}
@Override
public void onResponse(Call call, Response response) throws IOException {
if(response.isSuccessful()){
}
}
当前代码使用此代码从“ URL”中调用json信息。
我想更改代码,以便它传递带有url的密钥,如果该密钥与PHP中正在检查的密钥匹配,它将返回数据。