本文介绍如何通过Java SDK调用GetOrderFreeFlowProductStatus方法获取流量包订购状态。该接口属于正式数据接口,仅能查询“订购流量包”接口产生的数据。
请求参数
名称 | 类型 | 是否必填 | 示例值 | 描述 |
CustomerFlowOrderId | String | 是 | xgip_oneflow_public_cn-********-test-0526 | 订购流量包API结果 |
Endpoint | String | 是 | xgippop.aliyuncs.com | 服务的接入地址,固定值 |
代码示例
import com.alibaba.fastjson.JSON;
import com.aliyun.teaopenapi.models.Config;
import com.aliyun.xgippop20220520.Client;
import com.aliyun.xgippop20220520.models.GetOrderFreeFlowProductStatusRequest;
import com.aliyun.xgippop20220520.models.GetOrderFreeFlowProductStatusResponse;
public class GetOrderFreeFlowProductStatus {
public static void main(String[] args) {
GetOrderFreeFlowProductStatusRequest request = new GetOrderFreeFlowProductStatusRequest();
/**
* 阿里云账号AccessKey拥有所有API的访问权限,建议您使用RAM用户进行API访问或日常运维。
* 强烈建议不要把AccessKey ID和AccessKey Secret保存到工程代码里,否则可能导致AccessKey泄露,威胁您账号下所有资源的安全。
* 调用接口前请先配置身份认证,具体操作请参见https://help.aliyun.com/document_detail/378659.html。
* 本示例使用了阿里云Credentials工具托管AccessKey,来实现API访问的身份验证。
*/
request.setCustomerFlowOrderId("xgip_oneflow_public_cn-********-test-0526");
com.aliyun.credentials.Client credentialClient = new com.aliyun.credentials.Client();
Config config = new Config();
config.setEndpoint("xgippop.aliyuncs.com");
config.setCredential(credentialClient);
try {
Client client = new Client(config);
GetOrderFreeFlowProductStatusResponse response = client.getOrderFreeFlowProductStatus(request);
System.out.println(JSON.toJSONString(response.getBody()));
} catch (Exception e) {
e.printStackTrace();
}
}
}
返回结果示例
{
"code":"200",
"data":{
"customerFlowOrderId":"xgip_oneflow_public_cn-********-test-0526",
"customerFlowRequestId":"xgip_oneflow_public_cn-********-test-0526",
"error":"true",
"status":"initOrder"
},
"message":"操作成功",
"success":true
}
返回结果中data对象说明
名称 | 类型 | 描述 |
customerFlowOrderId | String | 订购流量包API结果中的参数 |
customerFlowRequestId | String | 订购流量包API结果中的参数 |
error | String | 返回订购失败原因 |
status | String | 订购状态。 initOrder:下单中; ordering:订购中; successOrder:订购成功; failOrder:下单失败; null:查询失败,请校对参数。 |
文档内容是否对您有帮助?