Hi im trying to authentication with blob storage via BasicAuthenticationCredential by using username/password.
But i got this error: The access token was missing or malformed
code:
BasicAuthenticationCredential basicAuthenticationCredential = new BasicAuthenticationCredential("duy.nguyen@gooddata.com","password");
blobServiceClient = new BlobServiceClientBuilder()
.credential(basicAuthenticationCredential)
.endpoint("https://msfdev.blob.core.windows.net")
.buildClient();
blobServiceClient.getProperties();