2

我正在努力让 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);
}

如何传递访问此提要所需的凭据?

谢谢!

4

2 回答 2

3

提要如何通过凭据?如果它使用的是基本身份验证,那么您可以对您的凭据进行 base64 编码并将它们传递到适配器调用的标头中,如下所示:

function getFeed(){

    var input = {
            method  : 'get',
            headers: {Authorization: "Basic YWRtaW5Ad29ya2xpZ2h0LmlibTpjaGFuZ2VJdCE="},
            path : "/hello",            
            returnedContentType : 'plain'       
    };

    return WL.Server.invokeHttp(input);
}
于 2013-06-04T19:07:45.783 回答
3

您可以将身份验证机制指定为适配器 XML 文件的一部分。文档在这里:HTTP 适配器的 Authentication 元素

目前我面前没有要检查的 Worklight Studio 实例,但我想有一个适配器 XML 的设计视图或一些自动完成功能来帮助填写应如何在<authentication>块中指定详细信息.

例子:

<?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>
            <authentication>
                <basic/>
                <serverIdentity>
                    <username> ${user} </username>
                    <password> ${password} </password>
                </serverIdentity>
            </authentication>  
        </connectionPolicy>
        <loadConstraints maxConcurrentConnectionsPerNode="2" />
    </connectivity>
   <procedure name="getFeed" connectAs="server"/>
</wl:adapter>
于 2013-06-04T19:27:52.293 回答