ionic2 - errorCode : MINIMUM_SERVER when access obtainAccessToken in IBM MFP8 -




i'm getting failure when trying call

 wlauthorizationmanager.obtainaccesstoken() 

using ionic 2 , mfp 8

this message

============== {"status":-1,"responsetext":"","errormsg":"this version of mobilefirst client sdk requires minimal server version greater ifix 8.0.0.0-if201701250919","errorcode":"minimum_server"}

our installation team installed latest ifix pack also.

i'm attaching code snippet also.

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 = "roney@123"; let modalc = this.modal.create("userloginchallengehandler",{"username":usrname,"password":passwrd}); modalc.present(); modalc.ondiddismiss((data)=>{ //further proceed goes here this.statusbar.styledefault(); this.splashscreen.hide(); this.fcminformation(); });  });  }).fail((error) => { console.log('--------ssl pin failed-------------', error); }); 

this means, server still running ifix level older client. possible server still not updated - may update wasn't proper or complete. server side log ( tracing) tell versions of server side components running. option verify network capture - give more details on server side message , version.





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -