https://<storage-account-name>.blob.core.windows.net is the format for blob URL.
It seems like you are using incorrect Uri.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
{
"status": 400,
"message": "Provided storage account endpoint ('202323248.') doesn't follow the naming convention. Storage Account name should be between 3 and 24 characters (lowercase letters and numbers). If providing the Storage Account endpoint, make sure to enter the full URI (for example https://accountname.blob.storage.net)\r\nclientRequestId: d977e573-6bae-4b43-bc50-64efc30690ac",
"error": {
"message": "Provided storage account endpoint ('202323248.') doesn't follow the naming convention. Storage Account name should be between 3 and 24 characters (lowercase letters and numbers). If providing the Storage Account endpoint, make sure to enter the full URI (for example https://accountname.blob.storage.net)"
},
"source": "azureblob-eus.azconn-eus-002.p.azurewebsites.net"
}
How do I fix this?
https://<storage-account-name>.blob.core.windows.net is the format for blob URL.
It seems like you are using incorrect Uri.
@Vince Weeks Welcome to Microsoft Q&A Forum, Thank you for posting your query here!
Based on the error message: I would recommened to please refer to the troubleshooting steps in this article.
Resolve errors for storage account names
Here are some steps to address this issue:
Verify Storage Account Name: Ensure that the storage account name you are using follows the Azure naming conventions. Storage account names must be between 3 and 24 characters in length and can contain only lowercase letters and numbers. No special characters, uppercase letters, or spaces are allowed.
Check Endpoint: If you are providing an endpoint for the storage account, make sure you are using the correct format. The correct format for the storage account endpoint should be something like https://yourstorageaccount.blob.core.windows.net
.
Check for Typos: Double-check for any typos or mistakes in the storage account name or endpoint you are using. Even a small typo can result in this error.
Use the Right Name: Ensure that you are using the name of the storage account, not its resource ID or any other identifier. The name is what should follow the naming conventions.
Validation in Code: If you are configuring this in code, make sure that you are using the correct parameters and that the storage account name or endpoint is being provided correctly.
If you continue to face issues or if you believe you are using a correct storage account name or endpoint but still encounter this error, please double-check your configuration and ensure that you are using the correct information. If the problem persists, it may be helpful to provide more context or code snippets for a more specific troubleshooting process.
Please let us know if you have any further queries. I’m happy to assist you further.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.