使用ChatBot连接Skype for Business

问题描述 投票:0回答:1

我试图在Skype上部署Bot并面临此错误,任何人都可以建议相同的解决方案:

PS C:\WINDOWS\system32> $TenentAdminDomainId = Read-Host -Prompt 'Input your domain id in <user>@<domain>.com'
Input your domain id in <user>@<domain>.com: [email protected]
PS C:\WINDOWS\system32> New-CsOnlineApplicationEndpoint -ApplicationId fc1d28c4-7ff2-41dd-9a1b-a5652949d051 -Name TestBotAP -Uri sip:$TenentAdminDomainId
Cmdlet invocation error
    + CategoryInfo          : NotSpecified: (:) [New-CsOnlineApplicationEndpoint], CmdletInvocationException
    + FullyQualifiedErrorId : Error processing cmdlet request,Microsoft.Rtc.Management.Hosted.PlatformService.NewPlatformServiceAppEndpointConfigCmdlet
    + PSComputerName        : adminin1.online.lync.com

Could not find the application endpoint
    + CategoryInfo          : InvalidOperation: (Microsoft.Rtc.M...cation endpoint:PlatformServiceCmdletException) [New-CsOnlineApplicationEndpoint], PlatformServiceException
    + FullyQualifiedErrorId : Could not get application endpoint or the Uri is already present as an User in BVD,Microsoft.Rtc.Management.Hosted.PlatformService.NewPlatformServiceAppEndpointConfigCmdlet
    + PSComputerName        : adminin1.online.lync.com
powershell botframework chatbot skype-for-business skype-bots
1个回答
0
投票

来自https://docs.microsoft.com/en-us/skype-sdk/skype-for-business-bot-framework/docs/bot-common-errors

FullyQualifiedErrorId:无法获取应用程序端点,或者Uri已作为BVD中的用户出现

删除租户中具有相同sipuri的现有用户帐户,或使用租户中尚不存在的sipuri运行cmdlet。

© www.soinside.com 2019 - 2024. All rights reserved.