fetch 1000 folders and 1000 files per call instead of 100

This commit is contained in:
root
2015-01-03 12:11:25 -06:00
parent 6e675c24de
commit e8d16e6c54

View File

@@ -89,6 +89,7 @@ mfconn_api_folder_get_content(mfconn * conn, const int mode,
api_call = mfconn_create_signed_get(conn, 0,
"folder/get_content.php",
"?content_type=%s"
"&chunk_size=1000"
"&response_format=json",
content_type);
} else {
@@ -96,6 +97,7 @@ mfconn_api_folder_get_content(mfconn * conn, const int mode,
"folder/get_content.php",
"?folder_key=%s"
"&content_type=%s"
"&chunk_size=1000"
"&response_format=json",
folderkey, content_type);
}