我正在尝试使用Microsoft Azure Storage Explorer,并附加一个 SAS URI。但我总是得到错误:
资源类型访问不足。至少需要服务级别 ('s') 访问权限。
这是我的 SAS URI,其中部分被混淆了:
https://ti<...>hare.blob.core.windows.net/?sv=2018-03-28&ss=b&srt=co&sp=rwdl&se=2027-07-01T00:00:00Z&st=2019-07-01T00:00:00Z&sip=52.<...>.235&spr=https&sig=yD%2FRUD<...>U0%3D
这是我的连接字符串,其中部分被混淆了:
BlobEndpoint=https://tidi<...>are.blob.core.windows.net/;QueueEndpoint=https://tidi<...>hare.queue.core.windows.net/;FileEndpoint=https://ti<...>are.file.core.windows.net/;TableEndpoint=https://tid<...>hare.table.core.windows.net/;SharedAccessSignature=sv=2018-03-28&ss=b&srt=co&sp=rwdl&se=2027-07-01T00:00:00Z&st=2019-07-01T00:00:00Z&sip=52.<...>.235&spr=https&sig=yD%2FRU<...>YU0%3D
似乎问题出在我的 URI/endpoints/connectionstring/etc 的构造上,而不是在服务器上授予我的权限,因为当我单击下一步时,错误会立即显示。我不相信它甚至试图联系服务器。
我究竟做错了什么?(一旦我开始工作,我将使用 URI/etc 嵌入我的 c# 应用程序以进行编程访问。)提前致谢。