gpt4 book ai didi

azure - 未获取要传递的参数以及在 azure 门户上找到的 StorageCredentials 的位置

转载 作者:行者123 更新时间:2023-12-02 07:35:13 24 4
gpt4 key购买 nike

我有 azure Http 触发功能。我想从 azure 表存储中读取数据。根据下面的函数,如果我想调用我需要这些参数。所以需要那个凭证。但我很困惑如何调用哪个参数以及在哪里可以获得它。

var httpClient = new CloudTableClient(new Uri(""),
new Microsoft.WindowsAzure.Storage.Auth.StorageCredentials("", ""));

最佳答案

您似乎正在尝试获取 Azure 存储凭据。

您需要以下参数:

  1. 您的存储帐户网址
  2. 您的存储帐户名称
  3. 您的存储 key
  4. 存储表名称

Azure 门户操作:

  • 转到 Azure 门户

  • 选择存储帐户

  • 点击您期望的应用

  • 选择访问键

  • 查看屏幕截图以更好地理解

    enter image description here

    您的代码片段:

       var httpClient = new CloudTableClient(new Uri("AccountURL"),
    new Microsoft.WindowsAzure.Storage.Auth.StorageCredentials("AccountName", "AccessKey"));

    一个提示:如果您只需将鼠标悬停在功能上,它就会显示您所需的建议。

    关于azure - 未获取要传递的参数以及在 azure 门户上找到的 StorageCredentials 的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56488650/

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