From e8d16e6c54b0f87b82e2d16d092a16213bceda1c Mon Sep 17 00:00:00 2001 From: root Date: Sat, 3 Jan 2015 12:11:25 -0600 Subject: [PATCH] fetch 1000 folders and 1000 files per call instead of 100 --- mfapi/apicalls/folder_get_content.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mfapi/apicalls/folder_get_content.c b/mfapi/apicalls/folder_get_content.c index 2bed1f7..2f23358 100644 --- a/mfapi/apicalls/folder_get_content.c +++ b/mfapi/apicalls/folder_get_content.c @@ -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); }