OnceMi.AspNetCore.OSS icon indicating copy to clipboard operation
OnceMi.AspNetCore.OSS copied to clipboard

Asp.Net Core对象储存扩展包,支持Minio自建对象储存、阿里云OSS、腾讯云COS、七牛云Kodo、华为云OBS。

Results 19 OnceMi.AspNetCore.OSS issues
Sort by recently updated
recently updated
newest added

阿里云:https://help.aliyun.com/document_detail/31997.html 腾讯云:https://cloud.tencent.com/document/product/436/7746 七牛云:https://developer.qiniu.com/kodo/6364/multipartupload-interface 华为云:https://support.huaweicloud.com/api-obs/obs_04_0098.html

**异常:** 调用`BucketExists`、`ObjectsExists`等接口时会抛出异常:`MinIO API responded with message=Access denied on the resource: *******/` **复现步奏:** 1. Minio配置https 2. Minio通过nginx反向代理,实现用域名(比如:https://oss.oncemi.com)访问minio。 3. 调用上述有问题接口中的其中一个 **目前解决方案:** `BucketOperations`文件中方法`BucketExistsAsync`将 ``` RestRequest request = await this.CreateRequest(Method.HEAD, args.BucketName).ConfigureAwait(false); ``` 修改为: ```...

COSXML.CosException.CosClientException: The operation has timed out. ---> System.Net.WebException: The operation has timed out. at System.Net.HttpWebRequest.GetResponse() at COSXML.Network.CommandTask.Excute(Request request, Response response, HttpClientConfig config) at COSXML.Network.HttpClient.InternalExcute(CosRequest cosRequest, CosResult cosResult, QCloudCredentialProvider credentialProvider, Int32...

如图,官方诊断工具 ![image](https://github.com/oncemi/OnceMi.AspNetCore.OSS/assets/109678937/ee0ef5ee-952c-4cff-bb8d-67eb748a3df2) 调用代码 ![image](https://github.com/oncemi/OnceMi.AspNetCore.OSS/assets/109678937/5dcf6ec1-a795-45f9-a478-2703ee023dda) 但是 PutObjectAsync 是正常的,调用代码: ![image](https://github.com/oncemi/OnceMi.AspNetCore.OSS/assets/109678937/2d31c39d-90fc-4a77-b277-e9e9b22eed41)

我现在是已经分片上传到minio服务器了,但不知道怎么合并了,找了一圈没有找到直接服务器端合并的办法,请问有相关思路的解决方案吗?

阿里云 上传失败后没有返回requestId吗