Domande taggate «androidhttpclient»

12
Invia una richiesta HTTP con Android
Ho cercato ovunque ma non sono riuscito a trovare la mia risposta, c'è un modo per fare una semplice richiesta HTTP? Voglio richiedere una pagina / script PHP su uno dei miei siti Web, ma non voglio mostrare la pagina web. Se possibile, voglio persino farlo in background (in un …

10
POST Multipart Form Data utilizzando Retrofit 2.0 inclusa l'immagine
Sto provando a fare un POST HTTP sul server usando Retrofit 2.0 MediaType MEDIA_TYPE_TEXT = MediaType.parse("text/plain"); MediaType MEDIA_TYPE_IMAGE = MediaType.parse("image/*"); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); imageBitmap.compress(Bitmap.CompressFormat.JPEG,90,byteArrayOutputStream); profilePictureByte = byteArrayOutputStream.toByteArray(); Call<APIResults> call = ServiceAPI.updateProfile( RequestBody.create(MEDIA_TYPE_TEXT, emailString), RequestBody.create(MEDIA_TYPE_IMAGE, profilePictureByte)); call.enqueue(); Il server restituisce un errore che indica che il file non è …
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.