My application contains a function that firstly allows users to either take a picture or select a picture from his/her gallery. After that, they will proceed with uploading the image to a Backendless table (which I have created) and the image will be stored in the respective column. May I know how do I get started? Thank you.
1 Like
- Upload the image to the File service ([url=https://backendless.com/documentation/files/rest/files_file_upload.htm]api1[/url], [url=https://backendless.com/documentation/files/rest/file_save_files_from_byte_arrays.htm]api2[/url])
The result of the upload in (1) will be the file URL
Store the file URL in the data table as a String value
Thank you Mr Piller