简体   繁体   English

Azure ACS是否支持像Salesforce这样的saml 2.0 IdP?

[英]Does Azure ACS support saml 2.0 IdPs like Salesforce?

I have no Access Control Service (ACS) installed, but I've seen on some online video demo that Salesforce is not in the list of available pre-installed identity providers. 我没有安装访问控制服务(ACS),但我在一些在线视频演示中看到Salesforce不在可用的预安装身份提供商列表中。 Salesforce can be configured as IdP (standard SAML 2.0 is used). 可以将Salesforce配置为IdP(使用标准SAML 2.0)。 Can I setup ACS so that I can use Salesforce as identity provider? 我可以设置ACS以便将Salesforce用作身份提供者吗? Thanks 谢谢

I haven't personally used a SAML 2.0 token provider, but it's official description says that ACS supports SAML 2.0 tokens. 我没有亲自使用SAML 2.0令牌提供程序,但它的官方说明是ACS支持SAML 2.0令牌。 A list of supported protocols are OAuth 2.0, WS-Trust, and WS-Federation (as by official statement ). 支持的协议列表包括OAuth 2.0,WS-Trust和WS-Federation(如官方声明 )。

Also, there is no currently automated (with user interface) way to add identity providers that are out of predefined in the ACS. 此外,目前没有自动(使用用户界面)方式添加超出ACS预定义的身份提供者。 You can however use the ACS cmdLets to manually add IPs that have a supported protocol. 但是,您可以使用ACS cmdLets手动添加具有受支持协议的IP。 Here is a Vittorio's blog that shows how to add an openID provider . 这是Vittorio的博客,展示了如何添加openID提供程序

If you can configure the SalesFores as IdP with the use of SAML 2.0 tokens, you just to identify the protocol - is it OAuth, is it WS-Trust of WS-Federation, and execute a PowerShell command which would look something like this: 如果您可以使用SAML 2.0令牌将SalesFores配置为IdP,那么您只需识别协议 - 它是OAuth,是WS-Federation的WS-Federation,还是执行PowerShell命令,如下所示:

PS:\>Add-IdentityProvider –Namespace "myacsnamespace" –ManagementKey "XXXXXXXX" -Type "Manual" -Name "SalesForce" -Protocol OAuth –SignInAddress "http://www.your_salesforce_site.com/sign-in-url"

The list of supported protocols for this command is: WsFederation, OAuth, OpenId, WsTrust. 此命令支持的协议列表包括:WsFederation,OAuth,OpenId,WsTrust。 So the SalesForce IdP configuration must use some of those protocols with SAML 2.0 tokens and it must work. 因此,SalesForce IdP配置必须使用SAML 2.0令牌中的某些协议,并且必须正常工作。 I think it's the OAuth as by this wiki . 我认为这就是这个维基的OAuth。

Hope this helps! 希望这可以帮助!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM