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。

相關問題