How can I get the list of all the files uploaded in my built.io application?

117 Views Asked by At

I have made an iOS application using built.io. There are several files uploaded in the application. However, i am unable to get the list of all the files uploaded in the app. Could anyone please help?

3

There are 3 best solutions below

1
On BEST ANSWER

This can be done via BuiltFile class instance method fetchAllOnSuccess:onError:

It returns all files uploaded in your built application only if the requesting user has permission for it.

Built* builtfileObj = [Built file];

[builtfileObj fetchAllOnSuccess:^(NSArray *allFiles) {
    // allFiles contains array of BuiltFiles
} onError:^(NSError *error) {
    // there was an error in creating the object
    // error.userinfo contains more details regarding the same
}];
0
On

I dont know if its available in the iOS SDK but you can use the REST API to fetch it

Headers :

"application_uid: uid" 
"application_api_key: api_key" 

URL: GET : https://manage.built.io/v1/uploads?skip=0&limit=50&include_count=true

Params : skip and limit for pagination and include_count is for getting the total count.

The above url will fetch all types of files

But if you want only images or videos then you can use the below urls

https://manage.built.io/v1/uploads/images
https://manage.built.io/v1/uploads/videos

I hope i was helpful to you!!

Note : without the headers the API wont work

0
On

To fetch all the uploads, the iOS SDK provides an instance method in the BuiltFile class. It returns an array of all the uploads. Here's the link to the official documentation http://static.built.io/downloads/sdk-docs/ios-docs/Classes/BuiltFile.html#//api/name/fetchAllOnSuccess:onError: