@telicent-oss/fe-auth-lib 0.0.1-TELFE-1371.34 → 0.0.1-TELFE-1371.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telicent-oss/fe-auth-lib",
|
|
3
|
-
"version": "0.0.1-TELFE-1371.
|
|
3
|
+
"version": "0.0.1-TELFE-1371.35",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "OAuth2 client library for Telicent Authentication Server",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=20.19.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "ae8e3c656b64e818cf5acb3e1c2ec1f840fd8271"
|
|
54
54
|
}
|
|
@@ -147,7 +147,7 @@ class AuthServerOAuth2Client {
|
|
|
147
147
|
sessionStorage.setItem("oauth_code_verifier", codeVerifier);
|
|
148
148
|
sessionStorage.setItem("oauth_redirect_uri", finalRedirectUri);
|
|
149
149
|
|
|
150
|
-
console.log({
|
|
150
|
+
console.log("params --", {
|
|
151
151
|
response_type: "code",
|
|
152
152
|
client_id: this.config.clientId,
|
|
153
153
|
redirect_uri: finalRedirectUri,
|
|
@@ -172,8 +172,6 @@ class AuthServerOAuth2Client {
|
|
|
172
172
|
code_challenge_method: "S256",
|
|
173
173
|
});
|
|
174
174
|
|
|
175
|
-
console.log({ params });
|
|
176
|
-
|
|
177
175
|
const authUrl = `${
|
|
178
176
|
this.config.authServerUrl
|
|
179
177
|
}/oauth2/authorize?${params.toString()}`;
|