serverless-tencent icon indicating copy to clipboard operation
serverless-tencent copied to clipboard

查询分账账单明细(DescribeAllocationBillDetail)SDK接口报错

Open guoqx12 opened this issue 3 months ago • 0 comments

try{ // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密 // 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305 // 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取 Credential cred = new Credential(secretId, decrypt); // 实例化一个http选项,可选的,没有特殊需求可以跳过 HttpProfile httpProfile = new HttpProfile(); httpProfile.setEndpoint("billing.tencentcloudapi.com"); // 实例化一个client选项,可选的,没有特殊需求可以跳过 ClientProfile clientProfile = new ClientProfile(); clientProfile.setHttpProfile(httpProfile); // 实例化要请求产品的client对象,clientProfile是可选的 BillingClient client = new BillingClient(cred, "", clientProfile); // 实例化一个请求对象,每个接口都会对应一个request对象 DescribeAllocationBillDetailRequest req = new DescribeAllocationBillDetailRequest(); req.setMonth("2024-01"); req.setOffset(0L); req.setLimit(100L); // 返回的resp是一个DescribeAllocationBillDetailResponse的实例,与请求对象对应 DescribeAllocationBillDetailResponse resp = client.DescribeAllocationBillDetail(req); // 输出json格式的字符串回包 System.out.println(resp); } catch (Exception e) { e.printStackTrace(); System.out.println(e.toString()); }

错误信息:InternalError message:An internal error has occurred. Retry your request, but if the problem persists, contact us. requestId:4b36ac27-4673-48b0-9f17-3bf7ff2b11c5

com.tencentcloudapi tencentcloud-sdk-java-billing 3.1.981

guoqx12 avatar Mar 18 '24 09:03 guoqx12