I have to upload multiple images included in JSON from android.
{
"topicId" : 1,
"QuizTest": [
{
"question": "This first question for test",
"Image" : "file:///D:/Images/fb_logo.png",
"isTrue" : 3,
"OptionFor":
{
"1" : "i am option 1",
"2" : "i am option 2",
"3" : "i am option 3",
"4" : "i am option 4"
}
},
{
"question": "This second question for test",
"Image" : "",
"isTrue" : 2,
"OptionFor":
{
"1" : "i am 2 option 1",
"2" : "i am 2 option 2"
}
},
{
"question": "This third question for test",
"Image" : "file:///D:/Images/icon.png",
"isTrue" : 1,
"OptionFor":
{
"1" : "i am 3 option 1",
"2" : "i am 3 option 2",
"3" : "i am 3 option 3",
"4" : "i am 3 option 4",
"5" : "i am 3 option 5"
}
}
]
}
I have data like this to upload.
I have tried with a volley, android networking. But I am not sure if I can upload files like this.
I have uploaded with json in body. Doesn't work. Please help.