gpt4 book ai didi

Azure函数: Cannot find certificate with this thumbprint in the certificate

转载 作者:行者123 更新时间:2023-12-03 04:56:59 28 4
gpt4 key购买 nike

我正在创建连接到的 Azure 函数来执行 PnP 命令。我已经创建了 docs 中提到的证书。我总是收到Cannot findcertificate with this指纹在证书存储中。Exception :Type

为什么会发生这个错误?需要修改什么设置吗? enter image description here

最佳答案

关于该问题,请引用以下步骤

  1. 创建自签名证书
New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer
  • 创建 Azure AD 应用程序

  • 配置权限

    Office 365 SharePoint Online(应用程序权限)

    • Sites.FullControl.All

    • TermStore.ReadWrite.All

    • 用户.ReadWriteAll

  • 将您的客户端证书(cer 文件)上传到 AD 应用程序 enter image description here

  • 创建函数

  • 将 pfx 文件上传到 Azure 函数

  • az webapp config ssl upload --certificate-file "e:\cert\pnp.pfx"  --name "<function app name>" --resource-group ""  --certificate-password "" --query thumbprint --output tsv

  • 配置函数以允许函数读取证书
  • az functionapp config appsettings set --name <app-name> --resource-group <resource-group-name> --settings WEBSITE_LOAD_CERTIFICATES=<comma-separated-certificate-thumbprints>

    8个功能代码

    Connect-PnPOnline -Tenant <>.onmicrosoft.com -ClientId <the appid of the ad application> -Thumbprint <comma-separated-certificate-thumbprints> -Url https://<>.sharepoint.com

    enter image description here

    关于Azure函数: Cannot find certificate with this thumbprint in the certificate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66386136/

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