我目前正在使用IBM MobileFirst Platform 8.0。和Datapower作为反向代理服务器。
我已经实现了如下给出的Challenge处理程序 https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/datapower-integration/
对于iPhone 7 Plus和iPhone 6 plus,一切都运行良好,但每当我在其他iPhone(iPhone 6或iPhone 6s)上运行应用程序时,方法永远不会被调用 -
dataPowerChallengeHandler.canHandleResponse = function(response) {
if (!response || response.responseText === null) {
return false;
}
var indicatorIdx = response.responseText.search('j_security_check');
if (indicatorIdx >= 0) {
return true;
}
return false;
};
Plus和其他iPhone有什么区别吗?
我正在使用MFP平台版本 - 8.0.0.00-20170131-101344
XCode 8.0版
ios 10.0版