我正在努力让 HTTP 适配器请求对受保护的 rss 提要正确执行。我已经阅读了大量 IBM 的文档,以及寻找到已移动或“正在维护”的 IBM 页面的死链接。不幸的是,我找到的示例都没有显示如何授权此请求。
就本示例而言,我尝试从 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);
}
如何传递访问此提要所需的凭据?
谢谢!