Fast-Android-Networking icon indicating copy to clipboard operation
Fast-Android-Networking copied to clipboard

need json object on .upload type

Open yogithesymbian opened this issue 2 years ago • 0 comments

same issue : https://github.com/amitshekhariitbhu/Fast-Android-Networking/issues/386 AND https://github.com/amitshekhariitbhu/Fast-Android-Networking/issues/226

the first rule : i can't access the backend version 2. my backend version 1 didnt have marks and its work properly, but on update their added object request.

the backend need object request for example

{
  "file": file,
  "track": "bali",
  "marks" : [ // these the marks what i mean .
      {
          id: 1,
          name: "yogi"
       }
   ]
}

i have use .toString and toTypedArray but get an errors, the server cant accept the request.

.addMultipartParameter("track", data.track)
.addMultipartParameter("marks", data.marks.toString())
.addMultipartFile("file", file)

anyone have solution with this FAN Library ?

yogithesymbian avatar Nov 25 '21 20:11 yogithesymbian