gpt4 book ai didi

c# - ImageResizer.Net AzureReader2 插件无法正常工作

转载 作者:行者123 更新时间:2023-11-30 22:18:40 25 4
gpt4 key购买 nike

我正在使用 ImageResizer.NET 库从 Azure Blob 存储读取图像并调整它们的大小。

为此,我需要安装 AzureReader2 插件并在 web.config 文件中配置它。

我在 Web.Config 中有以下行。

<plugins>
<add name="MvcRoutingShim" />
<add name="PrettyGifs" />
<add name="SimpleFilters" />
<add name="AzureReader2" connectionString="StorageConnectionString" endpoint="http://storageaccount.blob.core.windows.net/" />
</plugins>

当我运行 Web 角色时,出现以下错误:设置必须采用“名称=值”的形式。

我错过了什么?

最佳答案

在AzureReader2中,您必须指定实际的连接字符串,而不是连接字符串的名称

<plugins>
<add name="MvcRoutingShim" />
<add name="PrettyGifs" />
<add name="SimpleFilters" />
<add name="AzureReader2" connectionString="DefaultEndpointsProtocol=http;AccountName=myAccountName;AccountKey=myAccountKey" endpoint="http://<account>.blob.core.windows.net/" />
</plugins>

关于c# - ImageResizer.Net AzureReader2 插件无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15963642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com