okhttp3 를 이용하여 API 만들어 보아요 아래 소스는 첨부파일 전송하는 예제 소스 입니다. public String postSubmissions(String requestURL, String userId, String password, String jsonMessage) throws IOException { File file = new File("D:/sample10.cpp"); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(new BasicAuthInterceptor(userId, password)) .build(); RequestBody formBody = new MultipartBody.Builder() .setType(M..