Generate_container_sas changes?
I used the same script as in the example given inside under: https://learn.microsoft.com/en-us/azure/storage/blobs/sas-service-create-python?tabs=container
*def create_service_sas_container(self, container_client: ContainerClient, account_key: str): *
start_time = datetime.datetime.now(datetime.timezone.utc)
expiry_time = start_time + datetime.timedelta(days=1)
sas_token = generate_container_sas( account_name=container_client.account_name, container_name=container_client.container_name, account_key=account_key, permission=ContainerSasPermissions(read=True), expiry=expiry_time, start=start_time )
return sas_token
The generated token worked, but since today the token is not accepted. I compared the script-generated token with a manual generated one and they don't have the same structure anymore.
Where there any changes to this function or why did the structure change?
Thanks in advance for the help!