Refactoring oauth token handling functions and dependants

This commit is contained in:
dilanua 2016-07-26 17:35:50 +05:30
parent 34edbce1a0
commit d2ec81b12b
3 changed files with 8 additions and 8 deletions

View File

@ -31,7 +31,7 @@ var apiWrapperUtil = function () {
log.error("Could not set up encoded tenant based client credentials " +
"to session context. No username is found as input.");
} else {
var dynamicClientCredentials = tokenUtil.getDyanmicClientCredentials();
var dynamicClientCredentials = tokenUtil.getDynamicClientCredentials();
if (!dynamicClientCredentials) {
log.error("Could not set up encoded tenant based client credentials " +
"to session context as the server is unable to obtain dynamic client credentials.");

View File

@ -43,7 +43,7 @@ var backendServiceInvoker = function () {
privateMethods.getAccessToken = function () {
var tokenPair = parse(session.get(constants["ACCESS_TOKEN_PAIR_IDENTIFIER"]));
if (tokenPair) {
return tokenPair.accessToken;
return tokenPair["accessToken"];
} else {
return null;
}

View File

@ -27,7 +27,7 @@ var util = function () {
var adminUser = devicemgtProps["adminUser"];
var clientName = devicemgtProps["clientName"];
module.getDyanmicCredentials = function (owner) {
module.getDynamicClientCredentials = function () {
var payload = {
"callbackUrl": devicemgtProps.callBackUrl,
"clientName": clientName,