1

我正在编写一个应用程序,使用 AWS SDK CPP 与与 s3(存储桶和对象服务)兼容的 3rd(无 aws)存储进行交谈。

我尝试使用以下代码覆盖端点,例如http://192.168.10.10:8800,但它不起作用并返回“InternalError”。有人可以帮忙吗?提前致谢。

{   
Aws::SDKOptions options;
Aws::SDKOptions options;
Aws::SDKOptions options;`
Aws::InitAPI(options);
ClientConfiguration config;
config.scheme = Scheme::HTTP;
config.connectTimeoutMs = 30000;
config.requestTimeoutMs = 30000;
config.endpointOverride = "192.168.10.10:8800"  //customized address
Aws::S3::S3Client *s3client = new Aws::S3::S3Client(Aws::Auth::AWSCredentials("key", "secret"), config);

auto list_buckets_outcome = s3client->ListBuckets();

if( list_buckets_outcome.IsSuccess())
    std::cout << "List OK" << std::endl;
else
    std::cout << "List Error" <<       
           list_buckets_outcome.GetError().GetExceptionName() << 
           list_buckets_outcome.GetError().GetMessage() << std::endl;
    Aws::ShutdownAPI(options); 
}
4

0 回答 0