POST Multipart Data Data โดยใช้ Retrofit 2.0 รวมถึงรูปภาพ


148

ฉันพยายามทำ HTTP POST ไปยังเซิร์ฟเวอร์โดยใช้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();

เซิร์ฟเวอร์ส่งคืนข้อผิดพลาดที่แจ้งว่าไฟล์ไม่ถูกต้อง

นี่เป็นเรื่องแปลกเพราะฉันพยายามอัปโหลดไฟล์เดียวกันด้วยรูปแบบเดียวกันบน iOS (ใช้ไลบรารีอื่น) แต่อัปโหลดสำเร็จ

ฉันสงสัยว่าวิธีที่เหมาะสมในการอัพโหลดภาพโดยใช้Retrofit 2.0คืออะไร

ฉันควรบันทึกลงดิสก์ก่อนอัพโหลดหรือไม่

PS: ฉันได้ใช้ชุดติดตั้งเพิ่มสำหรับการร้องขอ Multipart อื่น ๆ ที่ไม่รวมภาพและพวกเขาเสร็จสมบูรณ์ ปัญหาคือเมื่อฉันพยายามที่จะรวมไบต์กับร่างกาย



คำตอบ:


180

ฉันกำลังเน้นโซลูชันในทั้ง 1.9 และ 2.0 เนื่องจากมีประโยชน์สำหรับบางคน

ใน1.9ฉันคิดว่าทางออกที่ดีกว่าคือการบันทึกไฟล์ลงดิสก์และใช้เป็นไฟล์ Typed เช่น:

RetroFit 1.9

(ฉันไม่รู้เกี่ยวกับการใช้งานฝั่งเซิร์ฟเวอร์ของคุณ) มีวิธีการอินเทอร์เฟซ API คล้ายกับสิ่งนี้

@POST("/en/Api/Results/UploadFile")
void UploadFile(@Part("file") TypedFile file,
                @Part("folder") String folder,
                Callback<Response> callback);

และใช้งานได้เช่น

TypedFile file = new TypedFile("multipart/form-data",
                                       new File(path));

สำหรับ RetroFit 2 ใช้วิธีการต่อไปนี้

RetroFit 2.0 (นี่เป็นวิธีแก้ปัญหาสำหรับปัญหาใน RetroFit 2 ซึ่งได้รับการแก้ไขแล้วในขณะนี้สำหรับวิธีที่ถูกต้องโปรดดูคำตอบของ jimmy0251 )

ส่วนต่อประสาน API:

public interface ApiInterface {

    @Multipart
    @POST("/api/Accounts/editaccount")
    Call<User> editUser(@Header("Authorization") String authorization,
                        @Part("file\"; filename=\"pp.png\" ") RequestBody file,
                        @Part("FirstName") RequestBody fname,
                        @Part("Id") RequestBody id);
}

ใช้มันเหมือน:

File file = new File(imageUri.getPath());

RequestBody fbody = RequestBody.create(MediaType.parse("image/*"),
                                       file);

RequestBody name = RequestBody.create(MediaType.parse("text/plain"),
                                      firstNameField.getText()
                                                    .toString());

RequestBody id = RequestBody.create(MediaType.parse("text/plain"),
                                    AZUtils.getUserId(this));

Call<User> call = client.editUser(AZUtils.getToken(this),
                                  fbody,
                                  name,
                                  id);

call.enqueue(new Callback<User>() {

    @Override
    public void onResponse(retrofit.Response<User> response,
                           Retrofit retrofit) {

        AZUtils.printObject(response.body());
    }

    @Override
    public void onFailure(Throwable t) {

        t.printStackTrace();
    }
});

5
ใช่ฉันคิดว่ามันเป็นปัญหา ( github.com/square/retrofit/issues/1063 ) กับ retrofit 2.0 คุณอาจต้องการติดกับ 1.9
insomniac

2
ดูการแก้ไขของฉันฉันยังไม่ได้ลองเลยคุณได้รับการต้อนรับ
insomniac

1
ฉันอัพโหลดรูปภาพสำเร็จโดยใช้ตัวอย่างชุดติดตั้ง Retrofit 2.0
jerogaren

3
@Bhargav คุณสามารถเปลี่ยนอินเทอร์เฟซเป็น@Multipart @POST("/api/Accounts/editaccount") Call<User> editUser(@PartMap Map<String, RequestBody> params);และเมื่อคุณมีไฟล์: Map<String, RequestBody> map = new HashMap<>(); RequestBody fileBody = RequestBody.create(MediaType.parse("image/jpg"), file); map.put("file\"; filename=\"" + file.getName(), fileBody);
insomniac

2
@insomniac ใช่ฉันเพิ่งค้นพบเกี่ยวกับเรื่องนั้นยังสามารถใช้MultiPartBody.Part
Bhargav

177

มีความถูกต้องวิธีที่ในการอัปโหลดไฟล์ด้วยชื่อไฟล์ด้วยRetrofit 2โดยไม่ต้องแฮ็ค :

กำหนดอินเตอร์เฟส API:

@Multipart
@POST("uploadAttachment")
Call<MyResponse> uploadAttachment(@Part MultipartBody.Part filePart); 
                                   // You can add other parameters too

อัปโหลดไฟล์เช่นนี้:

File file = // initialize file here

MultipartBody.Part filePart = MultipartBody.Part.createFormData("file", file.getName(), RequestBody.create(MediaType.parse("image/*"), file));

Call<MyResponse> call = api.uploadAttachment(filePart);

สิ่งนี้แสดงให้เห็นถึงการอัปโหลดไฟล์เท่านั้นคุณยังสามารถเพิ่มพารามิเตอร์อื่น ๆ ในวิธีเดียวกันพร้อม@Partคำอธิบายประกอบ


2
เราจะส่งไฟล์หลายไฟล์โดยใช้ MultipartBody.Part ได้อย่างไร
Praveen Sharma

คุณสามารถใช้MultipartBody.Partอาร์กิวเมนต์หลายตัวใน API เดียวกัน
jimmy0251

ฉันต้องส่งชุดภาพที่มี "image []" เป็นกุญแจ ฉันพยายาม@Part("images[]") List<MultipartBody.Part> imagesแต่มันให้ข้อผิดพลาดที่@Part parameters using the MultipartBody.Part must not include a part name
Praveen Sharma

คุณควรใช้@Body MultipartBody multipartBodyและMultipartBody.Builderส่งชุดภาพ
jimmy0251

2
ฉันจะเพิ่มรหัสลงใน mutipart ได้อย่างไร
andro

23

ฉันใช้ Retrofit 2.0 สำหรับผู้ใช้ที่ลงทะเบียนของฉันส่งไฟล์ภาพหลายส่วน / แบบฟอร์มและข้อความจากบัญชีลงทะเบียน

ใน RegisterActivity ของฉันให้ใช้ AsyncTask

//AsyncTask
private class Register extends AsyncTask<String, Void, String> {

    @Override
    protected void onPreExecute() {..}

    @Override
    protected String doInBackground(String... params) {
        new com.tequilasoft.mesasderegalos.dbo.Register().register(txtNombres, selectedImagePath, txtEmail, txtPassword);
        responseMensaje = StaticValues.mensaje ;
        mensajeCodigo = StaticValues.mensajeCodigo;
        return String.valueOf(StaticValues.code);
    }

    @Override
    protected void onPostExecute(String codeResult) {..}

และในชั้น Register.java ของฉันเป็นที่ที่ใช้ Retrofit กับการโทรแบบซิงโครนัส

import android.util.Log;
import com.tequilasoft.mesasderegalos.interfaces.RegisterService;
import com.tequilasoft.mesasderegalos.utils.StaticValues;
import com.tequilasoft.mesasderegalos.utils.Utilities;
import java.io.File;
import okhttp3.MediaType;
import okhttp3.MultipartBody;
import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import retrofit2.Call; 
import retrofit2.Response;
/**Created by sam on 2/09/16.*/
public class Register {

public void register(String nombres, String selectedImagePath, String email, String password){

    try {
        // create upload service client
        RegisterService service = ServiceGenerator.createUser(RegisterService.class);

        // add another part within the multipart request
        RequestBody requestEmail =
                RequestBody.create(
                        MediaType.parse("multipart/form-data"), email);
        // add another part within the multipart request
        RequestBody requestPassword =
                RequestBody.create(
                        MediaType.parse("multipart/form-data"), password);
        // add another part within the multipart request
        RequestBody requestNombres =
                RequestBody.create(
                        MediaType.parse("multipart/form-data"), nombres);

        MultipartBody.Part imagenPerfil = null;
        if(selectedImagePath!=null){
            File file = new File(selectedImagePath);
            Log.i("Register","Nombre del archivo "+file.getName());
            // create RequestBody instance from file
            RequestBody requestFile =
                    RequestBody.create(MediaType.parse("multipart/form-data"), file);
            // MultipartBody.Part is used to send also the actual file name
            imagenPerfil = MultipartBody.Part.createFormData("imagenPerfil", file.getName(), requestFile);
        }

        // finally, execute the request
        Call<ResponseBody> call = service.registerUser(imagenPerfil, requestEmail,requestPassword,requestNombres);
        Response<ResponseBody> bodyResponse = call.execute();
        StaticValues.code  = bodyResponse.code();
        StaticValues.mensaje  = bodyResponse.message();
        ResponseBody errorBody = bodyResponse.errorBody();
        StaticValues.mensajeCodigo  = errorBody==null
                ?null
                :Utilities.mensajeCodigoDeLaRespuestaJSON(bodyResponse.errorBody().byteStream());
        Log.i("Register","Code "+StaticValues.code);
        Log.i("Register","mensaje "+StaticValues.mensaje);
        Log.i("Register","mensajeCodigo "+StaticValues.mensaje);
    }
    catch (Exception e){
        e.printStackTrace();
    }
}
}

ในส่วนต่อประสานของ RegisterService

public interface RegisterService {
@Multipart
@POST(StaticValues.REGISTER)
Call<ResponseBody> registerUser(@Part MultipartBody.Part image,
                                @Part("email") RequestBody email,
                                @Part("password") RequestBody password,
                                @Part("nombre") RequestBody nombre
);
}

สำหรับยูทิลิตี้แยกวิเคราะห์การตอบสนอง InputStream

public class Utilities {
public static String mensajeCodigoDeLaRespuestaJSON(InputStream inputStream){
    String mensajeCodigo = null;
    try {
        BufferedReader reader = new BufferedReader(
                new InputStreamReader(
                    inputStream, "iso-8859-1"), 8);
        StringBuilder sb = new StringBuilder();
        String line;
        while ((line = reader.readLine()) != null) {
            sb.append(line).append("\n");
        }
        inputStream.close();
        mensajeCodigo = sb.toString();
    } catch (Exception e) {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }
    return mensajeCodigo;
}
}

16

อัพเดตรหัสสำหรับการอัพโหลดไฟล์ภาพในRetrofit2.0

public interface ApiInterface {

    @Multipart
    @POST("user/signup")
    Call<UserModelResponse> updateProfilePhotoProcess(@Part("email") RequestBody email,
                                                      @Part("password") RequestBody password,
                                                      @Part("profile_pic\"; filename=\"pp.png")
                                                              RequestBody file);
}

เปลี่ยนMediaType.parse("image/*")เป็นMediaType.parse("image/jpeg")

RequestBody reqFile = RequestBody.create(MediaType.parse("image/jpeg"),
                                         file);
RequestBody email = RequestBody.create(MediaType.parse("text/plain"),
                                       "upload_test4@gmail.com");
RequestBody password = RequestBody.create(MediaType.parse("text/plain"),
                                          "123456789");

Call<UserModelResponse> call = apiService.updateProfilePhotoProcess(email,
                                                                    password,
                                                                    reqFile);
call.enqueue(new Callback<UserModelResponse>() {

    @Override
    public void onResponse(Call<UserModelResponse> call,
                           Response<UserModelResponse> response) {

        String
                TAG =
                response.body()
                        .toString();

        UserModelResponse userModelResponse = response.body();
        UserModel userModel = userModelResponse.getUserModel();

        Log.d("MainActivity",
              "user image = " + userModel.getProfilePic());

    }

    @Override
    public void onFailure(Call<UserModelResponse> call,
                          Throwable t) {

        Toast.makeText(MainActivity.this,
                       "" + TAG,
                       Toast.LENGTH_LONG)
             .show();

    }
});

ฉันพยายามทำหลายวิธี แต่ไม่สามารถรับผลลัพธ์ได้ ฉันเพิ่งเปลี่ยนสิ่งนี้ ("เปลี่ยน MediaType.parse (" image / * ") เป็น MediaType.parse (" image / jpeg ")") ตามที่คุณพูดและมันใช้งานได้แล้วขอบคุณมาก
Gunnar

หวังว่าฉันจะให้คะแนนมากกว่าหนึ่งคะแนนขอบคุณ
Rohit Maurya

ถ้าคุณมี API @Multipartแล้ว@Partคำอธิบายประกอบต้องใส่ชื่อหรือใช้ MultipartBody.Part พารามิเตอร์ชนิด
Rohit

ทางออกที่ดี! และมีอีกหนึ่งการเสนอราคาใน @Part ("profile_pic \"; filename = \ "pp.png \" "มันจะเป็นไปได้@Part("profile_pic\"; filename=\"pp.png "
Ninja

15

เพิ่มคำตอบที่ได้รับจาก @insomniac คุณสามารถสร้าง a Mapเพื่อใส่พารามิเตอร์สำหรับการRequestBodyรวมภาพ

รหัสสำหรับส่วนต่อประสาน

public interface ApiInterface {
@Multipart
@POST("/api/Accounts/editaccount")
Call<User> editUser (@Header("Authorization") String authorization, @PartMap Map<String, RequestBody> map);
}

รหัสสำหรับคลาส Java

File file = new File(imageUri.getPath());
RequestBody fbody = RequestBody.create(MediaType.parse("image/*"), file);
RequestBody name = RequestBody.create(MediaType.parse("text/plain"), firstNameField.getText().toString());
RequestBody id = RequestBody.create(MediaType.parse("text/plain"), AZUtils.getUserId(this));

Map<String, RequestBody> map = new HashMap<>();
map.put("file\"; filename=\"pp.png\" ", fbody);
map.put("FirstName", name);
map.put("Id", id);
Call<User> call = client.editUser(AZUtils.getToken(this), map);
call.enqueue(new Callback<User>() {
@Override
public void onResponse(retrofit.Response<User> response, Retrofit retrofit) 
{
    AZUtils.printObject(response.body());
}

@Override
public void onFailure(Throwable t) {
    t.printStackTrace();
 }
});

ฉันจะอัปโหลดหลายไฟล์ด้วย 2 สายได้อย่างไร
Jay Dangar

เป็นไปได้ไหมที่คุณจะตอบstackoverflow.com/questions/60428238/…
Ranjit

14

ดังนั้นวิธีง่ายๆในการบรรลุภารกิจของคุณคือ คุณต้องทำตามขั้นตอนด้านล่าง: -

1. ขั้นตอนแรก

public interface APIService {  
    @Multipart
    @POST("upload")
    Call<ResponseBody> upload(
        @Part("item") RequestBody description,
        @Part("imageNumber") RequestBody description,
        @Part MultipartBody.Part imageFile
    );
}

@Multipart requestคุณต้องทำให้สายทั้งหมดเป็น itemและimage numberเป็นเพียงร่างกายของสตริงซึ่งถูกห่อหุ้มRequestBodyมา เราใช้สิ่งMultipartBody.Part classที่ทำให้เราสามารถส่งชื่อไฟล์จริงนอกเหนือจากข้อมูลไฟล์ไบนารีพร้อมคำขอ

2. ขั้นตอนที่สอง

  File file = (File) params[0];
  RequestBody requestFile = RequestBody.create(MediaType.parse("multipart/form-data"), file);

  MultipartBody.Part body =MultipartBody.Part.createFormData("Image", file.getName(), requestBody);

  RequestBody ItemId = RequestBody.create(okhttp3.MultipartBody.FORM, "22");
  RequestBody ImageNumber = RequestBody.create(okhttp3.MultipartBody.FORM,"1");
  final Call<UploadImageResponse> request = apiService.uploadItemImage(body, ItemId,ImageNumber);

ตอนนี้คุณมีimage pathและคุณจำเป็นต้องแปลงเป็นfileตอนนี้แปลงfileลงไปโดยใช้วิธีการRequestBody RequestBody.create(MediaType.parse("multipart/form-data"), file)ตอนนี้คุณจะต้องแปลงของคุณRequestBody requestFileลงในการใช้วิธีการMultipartBody.PartMultipartBody.Part.createFormData("Image", file.getName(), requestBody);

ImageNumber และ ItemIdเป็นข้อมูลอื่นของฉันที่ฉันต้องส่งไปยังเซิร์ฟเวอร์ดังนั้นฉันจึงทำทั้งสองRequestBodyอย่าง

สำหรับข้อมูลเพิ่มเติม


3

การอัปโหลดไฟล์โดยใช้ Retrofit นั้นง่ายมากคุณต้องสร้างส่วนต่อประสาน API ของคุณดังนี้

public interface Api {

    String BASE_URL = "http://192.168.43.124/ImageUploadApi/";


    @Multipart
    @POST("yourapipath")
    Call<MyResponse> uploadImage(@Part("image\"; filename=\"myfile.jpg\" ") RequestBody file, @Part("desc") RequestBody desc);

}

ในภาพรหัสข้างต้นเป็นชื่อคีย์ดังนั้นหากคุณใช้ php คุณจะเขียน$ _FILES ['image'] ['tmp_name']เพื่อรับสิ่งนี้ และfilename = "myfile.jpg"เป็นชื่อไฟล์ของคุณที่ถูกส่งไปพร้อมกับคำขอ

ตอนนี้เพื่ออัปโหลดไฟล์ที่คุณต้องการวิธีที่จะให้เส้นทางที่แน่นอนจาก Uri

private String getRealPathFromURI(Uri contentUri) {
    String[] proj = {MediaStore.Images.Media.DATA};
    CursorLoader loader = new CursorLoader(this, contentUri, proj, null, null, null);
    Cursor cursor = loader.loadInBackground();
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    String result = cursor.getString(column_index);
    cursor.close();
    return result;
}

ตอนนี้คุณสามารถใช้รหัสด้านล่างเพื่ออัพโหลดไฟล์ของคุณ

 private void uploadFile(Uri fileUri, String desc) {

        //creating a file
        File file = new File(getRealPathFromURI(fileUri));

        //creating request body for file
        RequestBody requestFile = RequestBody.create(MediaType.parse(getContentResolver().getType(fileUri)), file);
        RequestBody descBody = RequestBody.create(MediaType.parse("text/plain"), desc);

        //The gson builder
        Gson gson = new GsonBuilder()
                .setLenient()
                .create();


        //creating retrofit object
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(Api.BASE_URL)
                .addConverterFactory(GsonConverterFactory.create(gson))
                .build();

        //creating our api 
        Api api = retrofit.create(Api.class);

        //creating a call and calling the upload image method 
        Call<MyResponse> call = api.uploadImage(requestFile, descBody);

        //finally performing the call 
        call.enqueue(new Callback<MyResponse>() {
            @Override
            public void onResponse(Call<MyResponse> call, Response<MyResponse> response) {
                if (!response.body().error) {
                    Toast.makeText(getApplicationContext(), "File Uploaded Successfully...", Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(getApplicationContext(), "Some error occurred...", Toast.LENGTH_LONG).show();
                }
            }

            @Override
            public void onFailure(Call<MyResponse> call, Throwable t) {
                Toast.makeText(getApplicationContext(), t.getMessage(), Toast.LENGTH_LONG).show();
            }
        });
    }

สำหรับคำอธิบายโดยละเอียดเพิ่มเติมคุณสามารถเยี่ยมชมบทช่วยสอนการอัปโหลดไฟล์ติดตั้งเพิ่มเติมนี้


นี่คือแฮ็คมันได้รับการแก้ไขใน retrofit 2.0 นานแล้ว ดู jimmy0251 คำตอบด้านล่าง
Matt Wolfe

1

รุ่น Kotlin พร้อมการอัปเดตสำหรับการแยกค่าของRequestBody.create:

ชุดติดตั้งเพิ่มเติม

@Multipart
@POST("uploadPhoto")
fun uploadFile(@Part file: MultipartBody.Part): Call<FileResponse>

และเพื่ออัพโหลด

fun uploadFile(fileUrl: String){
    val file = File(fileUrl)
    val fileUploadService = RetrofitClientInstance.retrofitInstance.create(FileUploadService::class.java)
    val requestBody = file.asRequestBody(file.extension.toMediaTypeOrNull())
    val filePart = MultipartBody.Part.createFormData(
        "blob",file.name,requestBody
    )
    val call = fileUploadService.uploadFile(filePart)

    call.enqueue(object: Callback<FileResponse>{
        override fun onFailure(call: Call<FileResponse>, t: Throwable) {
            Log.d(TAG,"Fckd")
        }

        override fun onResponse(call: Call<FileResponse>, response: Response<FileResponse>) {
            Log.d(TAG,"success"+response.toString()+" "+response.body().toString()+"  "+response.body()?.status)
        }

    })
}

ขอบคุณ @ jimmy0251


0

อย่าใช้พารามิเตอร์หลายตัวในชื่อฟังก์ชั่น เพียงแค่ใช้รูปแบบ args เพียงไม่กี่ตัวที่จะเพิ่มความสามารถในการอ่านรหัสสำหรับสิ่งนี้คุณสามารถทำได้ -

// MultipartBody.Part.createFormData("partName", data)
Call<SomReponse> methodName(@Part MultiPartBody.Part part);
// RequestBody.create(MediaType.get("text/plain"), data)
Call<SomReponse> methodName(@Part(value = "partName") RequestBody part); 
/* for single use or you can use by Part name with Request body */

// add multiple list of part as abstraction |ease of readability|
Call<SomReponse> methodName(@Part List<MultiPartBody.Part> parts); 
Call<SomReponse> methodName(@PartMap Map<String, RequestBody> parts);
// this way you will save the abstraction of multiple parts.

อาจมีข้อยกเว้นหลายตัวที่คุณอาจพบในขณะที่ใช้ติดตั้งเพิ่มทั้งหมดของข้อยกเว้นการบันทึกเป็นรหัส , มีคำแนะนำในการ retrofit2/RequestFactory.javaคุณสามารถสองฟังก์ชั่นparseParameterAnnotationและparseMethodAnnotationที่ที่คุณสามารถยกเว้นการโยนโปรดทำสิ่งนี้มันจะช่วยประหยัดเวลาได้มากกว่าgoogling / stackoverflow


0

ใน kotlin มันค่อนข้างง่ายโดยใช้วิธีการขยายของtoMediaType , asRequestBodyและtoRequestBodyนี่เป็นตัวอย่าง:

ที่นี่ฉันโพสต์สองฟิลด์ปกติพร้อมกับไฟล์ pdf และไฟล์รูปภาพโดยใช้หลายส่วน

นี่คือการประกาศ API โดยใช้ชุดติดตั้งเพิ่มเติม:

    @Multipart
    @POST("api/Lesson/AddNewLesson")
    fun createLesson(
        @Part("userId") userId: RequestBody,
        @Part("LessonTitle") lessonTitle: RequestBody,
        @Part pdf: MultipartBody.Part,
        @Part imageFile: MultipartBody.Part
    ): Maybe<BaseResponse<String>>

และนี่คือวิธีเรียกมันว่า:

api.createLesson(
            userId.toRequestBody("text/plain".toMediaType()),
            lessonTitle.toRequestBody("text/plain".toMediaType()),
            startFromRegister.toString().toRequestBody("text/plain".toMediaType()),
            MultipartBody.Part.createFormData(
                "jpeg",
                imageFile.name,
                imageFile.asRequestBody("image/*".toMediaType())
            ),
            MultipartBody.Part.createFormData(
                "pdf",
                pdfFile.name,
                pdfFile.asRequestBody("application/pdf".toMediaType())
            )
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.