I created an bucket on Google cloud storage and set the permission "Read access to GCS objects" to allUsers.
So, I can use storage.googleapis.com/bucket-name/object-name to let anyone to read the object.
However, if I wanna assign a random object of this bucket to every read request by just 1 single URL, is that available? (e.g. storage.googleapis.com/bucket-name/random)
I know that the permission is assign to the bucket not the object, so seems like I can do something to grab a random object? or what service I should use to solve the problem?