I am getting below error when I try to obtain access token from the server using this code.
WLAuthorizationManager.obtainAccessToken()
.then(
function (accessToken) {
console.log("accessToken ", accessToken);
},
function (error) {
console.log("error ", error);
});
ERROR
{
"responseHeaders":{},
"status":200,
"responseText":"undefined",
"errorCode":"UNRESPONSIVE_HOST",
"errorMsg":"unresponsive host"
}
Usually when I get the access token, soft update is received but now soft update is not received because of this error. Can anyone help?
your response status is 200. it means everything is fine. check if you don't have the required data in DB/Server what you are looking for.