이미지를 포함하여 Retrofit 2.0을 사용하는 POST Multipart Form Data
Retrofit 2.0을 사용하여 서버에 HTTP POST를 수행하려고합니다. 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(); 서버가 파일이 유효하지 않다는 오류를 리턴합니다. iOS (다른 라이브러리 사용)에서 동일한 형식의 동일한 파일을 업로드하려고 시도했지만 성공적으로 …