How would I use Azure managed identity with Powerbuilder (currently using 2022 build 1892 application uses runtime 22.0.0.1878)?
We're setting up blob storage and my application needs to access it.
Some examples would be helpful
How would something like this be done in Powerbuilder:
var clientId = "xxxx";
var secret = "yyyy";
var tenant = "ttttt";
ClientSecretCredential credential = new ClientSecretCredential(tenant, clientId, secret);
string accountName = "aaaa";
string url = string.Format("https://{0}.blob.core.windows.net/", accountName);
var client = new BlobServiceClient(new Uri(url), credential);
Thanks
they gave you c# library calls that generate the rest api