Are Storage Bucket Public URLs at risk of changing?
When fetching content from storage from public buckets, the url ends up being something like:
https://project_url/storage/v1/object/public/bucket_name/folder_name/item_name.jpg
Which I can guess/construct myself without having to call getPublicUrl on each item if I have my project_url ,the bucket name and item metadata.
What is the risk in public url changing for the items in storage? I would assume the"v1" portion would be most at risk if there was an overhaul of the storage system, but is it a reasonable plan to just construct the URLs myself based on the object metadata?
https://project_url/storage/v1/object/public/bucket_name/folder_name/item_name.jpg
Which I can guess/construct myself without having to call getPublicUrl on each item if I have my project_url ,the bucket name and item metadata.
What is the risk in public url changing for the items in storage? I would assume the"v1" portion would be most at risk if there was an overhaul of the storage system, but is it a reasonable plan to just construct the URLs myself based on the object metadata?