We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
... // 分片上传 v1 Configuration cfg = new Configuration(); UploadManager uploadManager = new UploadManager(cfg); Auth auth = Auth.create(accessKey, secretKey); String token = auth.uploadToken(bucketName); Response r = upManager.put("hello world".getBytes(), "yourkey", token);
... 最后一句 应该是 uploadManager.put("hello world".getBytes(), "yourkey", token); upManager 改为 uploadManager
The text was updated successfully, but these errors were encountered:
确实是打错了
Sorry, something went wrong.
感谢您的反馈
No branches or pull requests
...
// 分片上传 v1
Configuration cfg = new Configuration();
UploadManager uploadManager = new UploadManager(cfg);
Auth auth = Auth.create(accessKey, secretKey);
String token = auth.uploadToken(bucketName);
Response r = upManager.put("hello world".getBytes(), "yourkey", token);
...
最后一句 应该是 uploadManager.put("hello world".getBytes(), "yourkey", token);
upManager 改为 uploadManager
The text was updated successfully, but these errors were encountered: