0
試圖調用錯誤碼:MINIMUM_SERVER當訪問obtainAccessToken在IBM MFP8
WLAuthorizationManager.obtainAccessToken()
使用離子2和MFP 8
這是消息
當我得到失敗============== {「status」: - 1,「responseText」:「」,「errorMsg」:「此版本的MobileFirst客戶端SDK需要比IFIX更大的服務器版本 8.0.0.0-IF201701250919" , 「錯誤碼」: 「MINIMUM_SERVER」}
我們的安裝隊伍,安裝了最新的iFix包還。
我附加了代碼片段。
app.component.ts
WL.Client.pinTrustedCertificatePublicKey('mycert.cer').then(() => {
console.log('--------SSL Pin Success-------------');
WLAuthorizationManager.obtainAccessToken().then((accessToken) => {
console.log('--------accessToken Success-------------', accessToken);
}, (response) => {
console.log('--------accessToken Failure-------------', response);
let usrname ="roney";
let passwrd = "[email protected]";
let modalc = this.modal.create("UserLoginChallengeHandler",{"username":usrname,"password":passwrd});
modalc.present();
modalc.onDidDismiss((data)=>{
//further to proceed goes here
this.statusBar.styleDefault();
this.splashScreen.hide();
this.fcmInformation();
});
});
}).fail((error) => {
console.log('--------SSL Pin failed-------------', error);
});