i am trying to create a blob in azure using the below tutorial project in Android.
https://github.com/Azure/azure-storage-android
i have created my own account with free trial and replaced storageConnectionString using created account name and access key.
public static final String storageConnectionString = "DefaultEndpointsProtocol=https;"
+ "AccountName=example.core.windows.net;"
+ "AccountKey=firstaccesskey";
But i got the below exception:
java.net.UnknownHostException: Unable to resolve host "example.core.windows.net.blob.core.windows.net": No address associated with hostname
The server encountered an unknown failure:
Status code 500
i am doubting on the storageConnectionString. the way i write the storageConnectionString is rite?