- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力让 HTTP 适配器请求到 protected 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);
}
如何传递访问此 Feed 所需的凭据?
谢谢!
最佳答案
您可以将身份验证机制指定为适配器 XML 文件的一部分。文档在这里:The Authentication element of the HTTP adapter .
目前我面前没有要检查的 Worklight Studio 实例,但我想应该有适配器 XML 的设计 View 或一些自动完成功能来帮助填写详细信息的指定方式在<authentication>
block 。
示例:
<?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>
关于ibm-mobilefirst - 在 IBM Worklight 中授权 HTTP 适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16921978/
在我的项目中,即使我使用build设置和部署目标更改我的服务器主机,客户端属性也不会在 wlClient.properties 中更改文件,但是上下文路径更改为新的,服务器主机 url 现在指向我的本
IBM MobileFirst Platform Application Center Console 和 MobileFirst Foundation V8.0 之间有什么区别?它是一个单独的控制台
我已经安装了 MobileFirst 7 for Eclipse (CN4V3EN),但在部署项目环境时遇到问题。 我采取的步骤: 创建了一个 MobileFirst 项目 -> 混合应用程序并为其命
我们如何在 Mobilefirst 平台上实现添加到任何社交网络小部件以在 facebook、twitter 等中分享照片。 我已经尝试过 http://www.addthis.com/ 的插件 它正
我正在尝试使用 IBM mobilefirst 平台中的 SQL 适配器将数据插入数据库,但是我的代码遇到了失败函数... 主要.js: function insertData(){ alert(
我有一个 Cordova 插件,可以成功从另一个 MobileFirst 应用程序启动一个 MobileFirst 应用程序,并且在启动的应用程序中成功接收来自启动应用程序的数据。 (与此 Launc
我在从 first hybrid app 构建/运行 HelloWorld 应用程序时遇到了一些问题教程。 当我尝试在 MobileFirst Development Server 上运行默认的 He
我正在使用 mobilefirst 平台 v7,我使用 WLResourceRequest/sendFormParameters api 发送发布请求,但是,我无法从 js 适配器端获取提交的参数..
我已经安装和配置了以下项目: 已安装 IBM WebSphere Application Server Liberty Core(版本 8.5.5) 已安装 IBM MobileFirst Platf
MobileFirst Foundation SDK 推送通知接收器似乎无法区分来自 MobileFirst 的通知和来自其他来源的通知。 我们正在尝试在我们的应用程序中实现推送通知,以便它可以从多个
我正在尝试从 MFP 服务器中提取一个 20MB 的文件。所以,我在我的客户端应用程序中编写了以下代码。 var resourceRequest = new WLResourceRequest("/a
我想问一下如何在 2 个 MobileFirst 应用程序之间传输数据。 Mobilefirst 是否有用于在 2 个加密的 JSONStore 之间传输数据的 API? 或者 我们必须使用 nati
IBM MobileFirst™ Platform Foundation 维护一个设备 ID 数据库表,以及其他与设备相关的元数据,以启用此功能。除了数据库中的设备 ID 列外,还保留了一个状态列。可
我正在使用我的办公室笔记本电脑(Lenovo vV310 - 8GB RAM - 64 位操作系统 - Windows 8.1)。过去几天,我一直在尝试解决 IBM Mobile First Plat
我们正在尝试使用 org.JSON.JSONObject 库在适配器端进行一些密集的 json 处理。我们有 Java 类来处理从 http 适配器接收到的数据。 mobilefirst 6.3.0
IBM MobileFirst 8 是否支持 Ionic 3 和 Angular 4。我看过 Ionic 2 的博客和文档,那么 Ionic 3 呢? 提前致谢。 最佳答案 Mobilefirst P
我正在使用安装在 Eclipse Luna 中的 IBM MobileFirst 7.0。 我在同一个项目中有 2 个应用程序:移动应用程序和控制台应用程序。 每当我运行控制台应用程序时,我都会收到以
在成功安装和配置 MobileFirst 7.0 服务器后,当我尝试部署应用程序 => 选择 MF studio/bin 文件夹中的 .wlapp 文件。 下面是来自 Tomcat 日志文件的一些日志
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
是否可以从项目中删除移动环境,例如 Blackberry 和 Adobe Air 环境。例如 mobilefirst add environment 有助于添加环境,但是否有删除环境的命令? 最佳
我是一名优秀的程序员,十分优秀!