安排会议 (UCWA)。服务不允许来自此来源的跨域请求
Schedule a meeting (UCWA). Service does not allow a cross domain request from this origin
我正在尝试在 Skype for Business 中安排会议。我已按照以下步骤操作:
https://ucwa.skype.com/documentation/KeyTasks-OnlineMeeting-ScheduleMeeting
但是我的请求被拒绝了。服务器拒绝的原因是:
Service does not allow a cross domain request from this origin.
我对我的 "X-ms-origin" 应该是什么感到困惑。
尽管以下 link 属于 UCWA 而不是 UCMA,但我相信这是同一个问题:
https://msdn.microsoft.com/en-us/library/office/dn323658(v=office.16).aspx
您的域需要在 Web 服务配置的允许列表中进行配置。例如:
$x = New-CsWebOrigin -Url "https://example.com"
Set-CsWebServiceConfiguration -Identity "Global" -CrossDomainAuthorizationList @{Add=$x}
如果您创建了 "Global" 以外的 Web 服务配置,则可以改用该配置。本质上,发出请求的域未被授权。
希望这对您有所帮助!
我正在尝试在 Skype for Business 中安排会议。我已按照以下步骤操作:
https://ucwa.skype.com/documentation/KeyTasks-OnlineMeeting-ScheduleMeeting
但是我的请求被拒绝了。服务器拒绝的原因是:
Service does not allow a cross domain request from this origin.
我对我的 "X-ms-origin" 应该是什么感到困惑。
尽管以下 link 属于 UCWA 而不是 UCMA,但我相信这是同一个问题: https://msdn.microsoft.com/en-us/library/office/dn323658(v=office.16).aspx
您的域需要在 Web 服务配置的允许列表中进行配置。例如:
$x = New-CsWebOrigin -Url "https://example.com"
Set-CsWebServiceConfiguration -Identity "Global" -CrossDomainAuthorizationList @{Add=$x}
如果您创建了 "Global" 以外的 Web 服务配置,则可以改用该配置。本质上,发出请求的域未被授权。
希望这对您有所帮助!