How to create SAS url for azure blob storage using java How to generate azure blob storage SAS url using java?
do we have any api where i can expire any existing sas url?
Requirement: Generate any sas url with expiry time as 7 days and i want some api where i can reset this sas url at any point of time within expiry time limit.
but looks like we don't have this i guess and every time it will create new sas url but we can expire any existing sas url at any point of time.
BlobServiceSasSignatureValues.setExpiryTime(OffsetDateTime expiryTime)
Method is used to set the time after which the SAS will no longer work. It may help. – Pamela Peng