0

背景您可以将Sharepoint 2010凭据传递给Wordpress吗?

与内部SharePoint 2010的安装和虚拟机安装的WordPress(同一本地网络上),我一直在负责,看看我们能有SharePoint用户使用他们的SharePoint登录到WordPress的证书。

该方法将使用Sharepoint作为SSO服务,该服务可以在登录后将凭据传递到Wordpress,在此登录将自动进行,并且可以直接进入管理面板。

的Sharepoint WordPress的

我发现很多例子的communicating with the Wordpress API from Sharepoint,但我正在寻找去从SharePoint到WordPress的,而不是周围的其他方式。

僵尸后

WordPress的帮助论坛中有一个僵尸职位要求same question从七年前。从谷歌搜索

未经检验的方法,我发现展示了如何retrieve login information from Sharepoint using PHP但不是一个SharePoint专家,我想确认这是首选方法,或博客文章是否会甚至工作所有。

具体来说,我看到他建议抓住通过SharePoint用户列表,

/* Local path to the Lists.asmx WSDL file (localhost). You must first download 
* it manually from your SharePoint site (which should be available at 
* yoursharepointsite.com/subsite/_vti_bin/Lists.asmx?WSDL) 
*/ 
$wsdl = "http://localhost/phpsp/Lists.wsdl"; 

它是那么容易,从而吸引用户列表?

替代

我能回到通过用户列表,

  • 一个SQL查询?
  • 返回XML或JSON的POST请求?

实例数据所需

var_dump($_POST); 

将返回,

array(3) { 
    ['username']=> 
    string(10) "mynamehere" 
    ['password']=> 
    string(64) "9a027d0d2c054c0cb18ef22d1d8b88c993998c9b4396f0b6b01da777c2f38aaa" 
    ['sharepoint_verification']=> 
    string(15) "zoR6n]N?~Mg%YEL" 
} 

感谢您的帮助专家。

回答

0

如果您在网络上讨论SharePoint 2010 on-premise和wordpress,那么架构方式是不可能的。

但是如果WordPress内部托管,我们可以使用某些OAuth插件配置并实施SharePoint 2013,则可以使用OAuth。

相关问题