How to load Parse.com file type using REST API?

Parse.com API REST API documentation lists many ways to interact with Parse.com data, such as loading and loading classes. It also describes file uploads. But it does not mention how to download the file from Parse.com. Does anyone know if this is possible, and if so, how to do it?

Parse.com REST API documentation is here: Parse.com REST API

+2
source share
1 answer

When you request a class with a column file, Parse will respond with an array of objects that match this request. The column filewill have the following format:

{    "url": "https://files.parse.com/.../hello.txt",    "name": "... hello.txt" }

url url, , .

+4

Source: https://habr.com/ru/post/1620940/


All Articles