gpt4 book ai didi

azure - 用户传递的授权 token 无效。 Azure 缓存

转载 作者:行者123 更新时间:2023-12-03 03:19:51 24 4
gpt4 key购买 nike

也许我误解了如何创建缓存,但没有任何 ID 或访问 key 可以用于启用 azure 缓存。我已经完成了以下教程:

http://msdn.microsoft.com/en-us/library/windowsazure/gg618003.aspx

http://msdn.microsoft.com/en-us/wazplatformtrainingcourse_buildingappswithcacheservice_topic3#_Toc310505080

http://msdn.microsoft.com/en-us/library/windowsazure/gg618003.aspx

还有大约 1/2 的十几种不同的如何在 azure 页面中创建缓存,我仍然在了解。

用户传递的授权 token 无效。

我有一个带有链接存储的网站和云服务,但在管理 Azure 门户中找不到 URL“yourcachename.cache.windows.net”或身份验证 token 。任何建议将不胜感激。

最佳答案

事实证明,我对 Azure 的版本感到困惑。我不确定这是从哪个版本开始的,但我正在使用 1.8,并且不需要访问 key 。将以下部分添加到 web.config 后,一切正常。

  <dataCacheClients>
<dataCacheClient name="default">
<autoDiscover isEnabled="true" identifier="{your cache worker role}" />
<localCache isEnabled="true" sync="TimeoutBased" objectCount="100000" ttlValue="300" />
</dataCacheClient>
</dataCacheClients>
<cacheDiagnostics>

然后为了让 session 正常工作,我需要添加以下内容:

   <sessionState mode="Custom" customProvider="AFCacheSessionStateProvider">
<providers>
<add name="AFCacheSessionStateProvider" type="Microsoft.Web.DistributedCache.DistributedCacheSessionStateStoreProvider, Microsoft.Web.DistributedCache" cacheName="default" dataCacheClientName="default" applicationName="AFCacheSessionState"/>
</providers>
</sessionState>

关于azure - 用户传递的授权 token 无效。 Azure 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13131019/

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