Parse.com upload file max size

2019-08-09 08:55发布

I am trying to upload a 100MB video file to Parse, but I get an error code 129 : File size exceeds maximum allowed.

I have been trying to find the size contraints on the docs with no luck. Does any one know the actual file size limit?

I am using the REST API for the uploads.

Thanks

1条回答
爱情/是我丢掉的垃圾
2楼-- · 2019-08-09 09:10

The size limit of a PFFile object is 10MB

The PFFile

PFFile lets you store application files in the cloud that would otherwise be too large or cumbersome to fit into a regular PFObject. The most common use case is storing images but you can also use it for documents, videos, music, and any other binary data (up to 10 megabytes).

Taken from the iOS guide on PFFile, https://parse.com/docs/ios_guide#files/iOS

查看更多
登录 后发表回答