-
Notifications
You must be signed in to change notification settings - Fork 0
api upload max size
Alban LEROUX edited this page Feb 28, 2012
·
1 revision
This return the max chunk size can be used in upload
See : Upload
require write
grant access
GET http://example.com/api/get/upload.max-size/json/
{
"method" : "upload.max-size",
}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<xml>
<method>upload.max-size</method>
</xml>
{
"status" : "valid",
"response" : { "max_size" : 33554432 }
}
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<xml>
<status>valid</status>
<response>
<max_size>33554432</max_size>
</response>
</xml>
No argument needed.
- max_size : The max chunk size in byte. (This is the base64 size).