gpt4 book ai didi

java - AWS API网关获取Api key

转载 作者:行者123 更新时间:2023-12-02 11:10:58 25 4
gpt4 key购买 nike

我正在尝试从 API Gateway 的“API Keys”中的 API Key 获取实际 key 。

AmazonApiGateway client = AmazonApiGatewayClientBuilder.standard().withRegion("my region").build();

GetApiKeysRequest req = new GetApiKeysRequest();
GetApiKeysResult keys = client.getApiKeys(req);

ApiKey key = keys.getItems().get(0); // just get the first one..

System.out.println(key.getId());
System.out.println(key.getName());
System.out.println(key.getValue());

希望 getValue() 能够提供实际的 key ,但它是空的..

最佳答案

确保您设置 includeValuestrue:

req.setIncludeValues(true);

关于java - AWS API网关获取Api key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50625905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com