Can you setup shared access signature with more than 1 year expiration to avoid setup calls in Windows azure?
var signature = blob.GetSharedAccessSignature(new SharedAccessPolicy()
{
SharedAccessStartTime = null,
SharedAccessExpiryTime =
DateTime.Now.AddMinutes(expireMinutes), //expire time is restricted at azure to 1hr
Permissions = SharedAccessPermissions.Read //readonly for now
});
It does not let me set more than 1 hr.