有没有办法在 WCF 配置中配置 oauth 访问行为?我不能让它工作。在控制台应用程序中连接字符串非常容易,但在 WCF 配置中却是一场噩梦。
<behavior name="securityBehaviorSts">
<transportClientEndpointBehavior>
<tokenProvider>
<windowsAuthentication>
<stsUris>
<stsUri value="https://url:9355/ServiceBusDefaultNamespace/$STS/OAuth/" />
</stsUris>
</windowsAuthentication>
</tokenProvider>
</transportClientEndpointBehavior>
</behavior>
谢谢