You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem to use this module against a on-prem apiee installation. I suggest to add an option to specify customSSOUrl.
Meaning add this to the loginBaseUrl.js file.
module.exports = function getLoginBaseUrl(options) {
if (options.ssoZone) {
return 'https://' + options.ssoZone + '.login.apigee.com';
}
if (options.ssoUrl) {
return options.ssoUrl;
}
if (options.keyfile) {
return 'https://oauth2.googleapis.com/token';
} if (options.customSSOUrl) {
return options.customSSOUrl;
}
return 'https://login.apigee.com';
};
The text was updated successfully, but these errors were encountered:
There is a problem to use this module against a on-prem apiee installation. I suggest to add an option to specify customSSOUrl.
Meaning add this to the loginBaseUrl.js file.
module.exports = function getLoginBaseUrl(options) {
if (options.ssoZone) {
return 'https://' + options.ssoZone + '.login.apigee.com';
}
if (options.ssoUrl) {
return options.ssoUrl;
}
if (options.keyfile) {
return 'https://oauth2.googleapis.com/token';
}
if (options.customSSOUrl) {
return options.customSSOUrl;
}
return 'https://login.apigee.com';
};
The text was updated successfully, but these errors were encountered: