I'm trying to write java code to implement the same functionality that is provided by New-AzStorageBlobSASToken
. Is there any example that I can refer?
Asked
Active
Viewed 94 times
0

Bomin
- 1,619
- 5
- 24
- 39
1 Answers
0
New-AzStorageBlobSASToken
generates a SAS token for an Azure storage blob. If you're using version 12 of Storage SDK for Java, you can accomplish this by using BlobServiceSasSignatureValues
class.

Gaurav Mantri
- 128,066
- 12
- 206
- 241
-
I'm using java 8 – Bomin Jun 09 '20 at 02:47
-
You need to tell Storage SDK version please. – Gaurav Mantri Jun 09 '20 at 02:50