Add Image to object

Hi

I would like to create a Object that contain image file. its possible ? how can I do it?

Hi Dario,

You can upload a file using the File Upload API:
http://backendless.com/documentation/files/rest/files_file_upload.htm

Once you do that, you can create an object with a property containing file URL. The file URL is provided to you as a result of file upload.

Regards,
Mark

When Im trying to upload a picture , I get this error on the photo.

I try with a diferent file like a .txt file and get the same error.
And i remove the “<>” and still get the same error

Whats the problem?
How can fix this?

Your screenshot shows that you’re using HTTP GET for upload. The upload command must be HTTP POST. And yes, remove “<>” from the URL.

Thanks @Mark Piller I already upload the images.

Now I want to Know how Im gonna retrieve the file to my imageView ? (Android)

When you upload the file, the server returns the URL of the file to you. You can use that URL. Alternatively, you can “build” a URL by following the patterns described in the documentation:
http://backendless.com/documentation/files/rest/files_file_download.htm

Thanks a Lot Mark piller I already done!