I am trying to upload an image and video from my android application to a private server.
I can't figure out how to upload video with other images and text.
You need to create a multipart request in Volley and specify the path of your photo/video that you want to upload. Follow this tutorial for a better understanding - http://www.techstricks.com/multipart-request-using-android-volley/
Related
I am working on an application that has the feature of uploading images, videos, pdf etc. Now the API is created using the HTTP PUT method. I have tried examples of retrofit using HTTP POST but I haven't found a working sample for HTTP PUT. If anyone has some knowledge about how to upload files of any size to the server, then please help me out. I am stuck on this from last week. Thanks.
Herewith I need clarifications on image upload with android using Apollo server 2 for API work.
Previously I followed base64 conversion image-upload technic. But afterwards, I want to alter the file upload from previous on to in-built graphql-server file upload feature.
From internet searching, I can't get clear idea about how the file upload has to be implemented between android and graphql using the inbuilt file upload feature in apollo server.
So please anyone share your thoughts on it and redirect me to clear path to implement it correctly..
I've Searched a lot on Android File Uploading in Apollo Server using GraphQL.But In Apollo server we can Upload a image using Base64 Format the only possible and easiest way is to use Retrofit .We can upload a file in Apollo server using Retrofit POST Method in Android.
i have done the application for uploading the images from mobile to server through api call one by one manner.I have create the service and multipart entitiy to upload the images.It seems uploading images one by one using multipart is performance wise not good.Any other thrid party library to achieve the image uploading in asynchronous manner?
I am having an app requirements like whatsapp application. The thing is that webservices are not ready and it will take time. Meanwhile I want the test URL which use JSON format to upload and download the videos and images.
I know the sample URL's for JSON simulation
http://www.jsontest.com/
http://www.mocky.io/
For HTTP GET and POST simulation
http://httpbin.org/
Like this I want it for images and video in the form of JSON upload/download.
You don't need a webservice to test download from android, just a server container like tomcat installed on your computer and place files you want to download on tomcats directory.
But you will need one for uploading to receive (even if it does nothing).
You may use the following websites to download an image from
http://dummyimage.com/
Or this website
https://placehold.it/
You may also use the following website for video downloads
http://www.sample-videos.com/index.php#sample-mp4-video
Here i am trying to upload the video to the webservice.Can anybody show me by some code.??
reply me soon.Thanks.
Hey i think this will help you Code to upload Video from Android to PHP
You can also refer at this discussion in SO Upload video from Android to server?