Hi there,
I have a PHP (Laravel) + React.js (with Intertia) app that I'm building that needs to use Azure Blob Storage for image uploading and serving images. I've successfully built an uploader on the frontend that relies on a SAS token. My intent was to use the Valet Key pattern to generate this SAS token from the PHP backend, and serve it to the frontend when the page is rendered (I'm using Socialite on the PHP / Laravel side for authentication with Entra ID).
Now the PHP storage client libraries are being retired, and we're forced to use the raw REST API, I'm really struggling to generate the SAS key on the server side for my valet key pattern. I haven't been able to find a single example online of someone else who's successfully integrated the REST API.
Really struggling here and could do with some guidance and / or an example.
Thanks,
Luca