diff --git a/Authenticator/Authenticator.crx b/Authenticator/Authenticator.crx index e958ad512..82255fe47 100644 Binary files a/Authenticator/Authenticator.crx and b/Authenticator/Authenticator.crx differ diff --git a/Authenticator/repo/CHANGES.md b/Authenticator/repo/CHANGES.md index 2927159dd..5d9e31032 100644 --- a/Authenticator/repo/CHANGES.md +++ b/Authenticator/repo/CHANGES.md @@ -1,5 +1,5 @@ # Okta SAML Authenticator - Changes Made - +### IMPORTANT DO NOT CHANGE THE NAME , IF YOU DO UPDATE THE EXTENSION ID IN THE extensions.json ## Summary Updated the Okta SAML Authenticator extension to improve responsiveness and enhance the user interface while maintaining all existing functionality. diff --git a/Authenticator/repo/popup.js b/Authenticator/repo/popup.js index a60ec1c6d..b3f847bb0 100644 --- a/Authenticator/repo/popup.js +++ b/Authenticator/repo/popup.js @@ -5,7 +5,7 @@ document.addEventListener("DOMContentLoaded", function () { const progressFill = document.getElementById("progressFill"); const OKTA_URL = - "https://integrator-2373294.okta.com/home/integrator-2373294_wootzapp_1/0oatpx2h4ye8vjezl697/alntpxch84VdDzIUW697"; + "https://integrator-2373294.okta.com/oauth2/default/v1/authorize?client_id=0oauw6v3bflEoiRu8697&response_type=code&scope=openid+profile+email&redirect_uri=https%3A%2F%2Fstrong-longma-70a01d.netlify.app%2F.netlify%2Ffunctions%2Fsamlreceiver&state=321e6752-2902-4ccc-ab4b-b928d171b2ce&code_challenge=Z82ay8lFZANzWgtXku_Vv0sf7HlAFJ1hPWktqXggh8I&code_challenge_method=S256"; function updateStep(stepNumber, completed = false) { const step = document.getElementById(`step${stepNumber}`); @@ -44,8 +44,7 @@ document.addEventListener("DOMContentLoaded", function () { ${message} -
@@ -100,7 +99,7 @@ document.addEventListener("DOMContentLoaded", function () { updateStatus("Connecting to authentication server...", "loading", true); // Clear any existing SAML response and auth state to start fresh - chrome.storage.local.remove(['pendingSamlResponse', 'authResult'], function() { + chrome.storage.local.remove(['pendingSamlResponse', 'authResult'], function () { console.log("Cleared existing SAML response and auth state"); });