Domande taggate «android-json»


8
Invia richiesta POST con dati JSON utilizzando Volley
Vorrei inviare una nuova JsonObjectRequestrichiesta: Voglio ricevere dati JSON (risposta dal server): OK Voglio inviare dati formattati JSON con questa richiesta al server JsonObjectRequest request = new JsonObjectRequest( Request.Method.POST, "myurl.com", null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { //... } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.