//服务器端程序
Qiniu_Client client;
QINIU_ACCESS_KEY=(const char *)AccessKey;
QINIU_SECRET_KEY=(const char *)ScreteKey;
/* 全局初始化函数,整个进程只需要调用一次 /
Qiniu_Servend_Init(-1);
/ HTTP客户端初始化。HTTP客户端是线程不安全的,不要在多个线程间共用 /
Qiniu_Client_InitMacAuth(&client, 1024, NULL);
char UpLoadToken = uptoken(&client,bucket);
char *LocalHashCode=upload(&client, UpLoadToken, Key,filePath);
//int flag = resumable_upload(&client, UpLoadToken, Key,filePath,bucket);
/* 每个HTTP客户端使用完后释放 /
Qiniu_Client_Cleanup(&client);
/ 全局清理函数,只需要在进程退出时调用一次 */
Qiniu_Servend_Cleanup();
代码段如上,使用upload函数可以实现上传,但是使用resumable_upload则无法上传,二者的前四个参数是一样的,分块上传的参数有什么要求,应该注意些什么?