In application I am working we are using private blob container and for each new request of blob item we are generating new SAS token.
In microsoft standard CDN profile I have checked but there are only two option
1) compare whole url with SAS - which will not work as SAS token change each time and caching will not used
2) Ignore query part - that will allow access to blob item without SAS as it will be cached in edge server
So I am looking for options in Verizon Premium profile
few of the links I found in which it was using a fix SAS token for whole container which will be appended by CDN so keeping SAS hidden and using it for all blob item form that container
But is there way in which I can generate new SAS token for each blob item request and still use CDN ?
I am new at CDN and SAS token and this structure was already there so I am not sure if this is best practice or not.