-
-
Notifications
You must be signed in to change notification settings - Fork 276
Multipart Request
Anees Kodappana edited this page Jan 1, 2019
·
3 revisions
private void imageUpload(final String imagePath) {
SimpleMultiPartRequest request = new SimpleMultiPartRequest(Method.POST, apiUrl, mListener, mErrorListener);
request.addFile("photo", imagePath);
request.addMultipartParam("body", "text/plain", "some text");
RequestQueue mRequestQueue = Volley.newRequestQueue(getApplicationContext());
mRequestQueue.add(request);
mRequestQueue.start();
}