Can c#/c++ be used for IBM COS API

524 Views Asked by At

Currently looking at IBM cloud storage as an option. Wondering if there is any easy way to talk to it via c#. Would the Amazon s3 .net SDK work for it? Or maybe the amazon s3 c++ sdk?

It’s a shame that IBM only officially supports python, java and node sdk

Is there any gotchas if I were to try to leverage the amazon s3 sdk directly

1

There are 1 best solutions below

1
On

According to the IBM documentation, COS

supports a subset of the S3 API for easy migration of applications to IBM Cloud.

so, depending on what functions exactly you need you might be able to use the Amazon S3 SDK. If the functions you need turn out to not be supported can probably use HTTPClient to wrap COS native API endpoints.