Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to pass Azure SAS token in headers/cookies/post body?

We would very much like to avoid the update of the url to the file in our application when the SAS token is updated. Is there a way to pass the token not in the url? I did not find any info on that and I think it is impossible but thought I'd ask anyway.

like image 497
grabantot Avatar asked Nov 01 '25 20:11

grabantot


1 Answers

Unfortunately not, it has to be part of the url.

What you can do is write a little proxy app service that operated in the way you want by passing it as a header and translating it for you. Alternatively (I am not 100% sure) but you may be able to map it in API Gateway. Have a rummage around here.

like image 168
Murray Foxcroft Avatar answered Nov 04 '25 13:11

Murray Foxcroft