How to Participate in Oracle Guided Learning UAT
The OGL Console is available at https://guidedlearning-uat.oracle.com.
To access, please use the same login information that is used for the production environment. The UAT environment will have a snapshot of data on Production taken during the week leading up to the UAT. The data set that OGL Analytics pulls from, therefore, will be static throughout the UAT, so any activity during the UAT will not reflect in the Analytics Dashboard. Please note that any work done on UAT will not be saved and will be wiped out when the environment is taken down after 20D is live.
Oracle Guided Learning is integrated with its host application either via a JavaScript snippet or a browser extension. Making the update so that your application connects to UAT is simple, but the steps are a little different depending on how OGL is implemented.
Step-by-step guide
JavaScript
In the JavaScript there will be one line of code that reads as follows:
("https:"==document.location.protocol?"https:":"http:")+"//guidedlearning.oracle.com/player/latest/static/js/iridizeLoader.min.js";e.type="text/javascript";e.async=true;t.parentNode.insertBefore(e,t);})();
Replace
with
Extension
Locate the extension.js and chrome.js files in the js/src folder of the OGL extension.
extension.js
In the extension.js file, there will be a line of code that reads as follows:
'(function(){var e=document.createElement("script");var t=document.getElementsByTagName("script")[0];e.src=("https:"==document.location.protocol?"https:":"http:")+"//guidedlearning.oracle.com/player/latest/static/js/iridizeLoader.js";e.type="text/javascript";e.async=true;t.parentNode.insertBefore(e,t);})();'
Replace
with
chrome.js
In the chrome.js file, there will be a line of code that reads as follows:
value = details.responseHeaders[i].value.replace(/;/g, "guidedlearning.oracle.com;");
Replace
with