我很努力地向受保護的rss提要發送HTTP適配器請求以正確執行。我已經閱讀了大量的IBM文檔,並且追蹤了死鏈接以移動或「維護」IBM頁面。不幸的是,我沒有發現任何示例顯示如何授權此請求。在IBM Worklight中授權HTTP適配器
爲了本示例的緣故,我試圖從IBM Greenhouse Environment的Connections安裝中訪問rss訂閱源。
適配器XML:
<?xml version="1.0" encoding="UTF-8"?>
<wl:adapter name="exampleAdapter"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wl="http://www.worklight.com/integration"
xmlns:http="http://www.worklight.com/integration/http">
<displayName>feedRead</displayName>
<description>feedRead</description>
<connectivity>
<connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
<protocol>https</protocol>
<domain>greenhouse.lotus.com</domain>
<port>443</port>
</connectionPolicy>
<loadConstraints maxConcurrentConnectionsPerNode="2" />
</connectivity>
<procedure name="getFeed" connectAs="server"/>
</wl:adapter>
適配器的.js:
function getFeed() {
var input = {
method : 'get',
returnedContentType : 'xml',
path : 'connections/opensocial/basic/rest/activitystreams/@me/@all/@all? rollup=true&format=atom'
};
return WL.Server.invokeHttp(input);
}
我如何可以通過訪問此飼料所需的憑據?
謝謝!
太棒了!我以前看過這樣的代碼,但出於某種原因無法使用它,這次它運行得很完美。現在要弄清楚如何通過siteminder進行身份驗證......有趣的部分 – Cmo
@Nick我在哪裏可以找到有關基本身份驗證的文檔? $ {user}和$ {password}變量存儲在哪裏? –