alibabacloud-java-sdk
alibabacloud-java-sdk copied to clipboard
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade com.aliyun:tea-rpc from 0.1.2 to 0.1.3. :information_source: Keep your dependencies up-to-date....
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade com.aliyun:tea-openapi from 0.2.8 to 0.3.1. :information_source: Keep your dependencies up-to-date....
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade com.aliyun:tea-util from 0.2.16 to 0.2.21. :information_source: Keep your dependencies up-to-date....
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to upgrade com.aliyun:tea from 1.2.0 to 1.2.8. :information_source: Keep your dependencies up-to-date....
Add BOM
json类型的索引底下有很多json_keys, 现在用sdk去同步两个地区的索引时,json内部的值同步不过来,希望能优化一下 (我目前的操作, 从A LogStore获取索引keys, 然后更新到B LogStore上, json类型底下的参数同步不了)
v1版本里直接用region就可以调用了,v2版本还要自己组endpoint,关键endpoint有些还很特殊需要额外处理,能封装起来吗
### Exception: `Caused by: darabonba.core.exception.TeaException: darabonba.core.exception.TeaException: key == null at com.aliyun.sdk.gateway.pop.interceptor.output.FinalizedOutputInterceptor.modifyOutput(FinalizedOutputInterceptor.java:33) at darabonba.core.interceptor.InterceptorChain.modifyOutput(InterceptorChain.java:96) at darabonba.core.TeaAsyncHandler$RetryableExecutor.lambda$attemptExecute$0(TeaAsyncHandler.java:289) at java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:774) at java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:750) at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:488) at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:1975) at com.aliyun.httpcomponent.httpclient.ApacheAsyncHttpClient$1.completed(ApacheAsyncHttpClient.java:133) at com.aliyun.httpcomponent.httpclient.ApacheAsyncHttpClient$1.completed(ApacheAsyncHttpClient.java:130) at org.apache.hc.core5.concurrent.BasicFuture.completed(BasicFuture.java:123) at...
根据OpenAI平台示例代码https://api.aliyun.com/api/Oss/2019-05-17/PutObject?sdkStyle=dara¶ms={%22x-oss-meta-*%22:{}}: ```java String filePath = "/home/charlie/downloads/" + video; String key = stsData.dir + video; System.out.println("key:" + key); FileInputStream fis = new FileInputStream(filePath); PutObjectRequest request = PutObjectRequest.builder() .bucket(stsData.bucket) .key(stsData.dir + "/"...
# gradle 构建报错 gradle 7.6 + JPMS 环境  原因就是 gradle 违反了自动模块解析规则, 拒绝解析依赖文件名的自动模块. 虽是构建工具的问题, 但是建议SDK支持下JPMS 简单点的就在 JDK 清单文件里添加 `Automatic-Module-Name` 即可 完整支持可以考虑用 添加 `module-info.java` 如果现在不支持, gradle 无法使用, maven 会依赖文件名解析模块名 将来如果指定的模块名称和文件名解析的不一致又会导致一波报错~