diff --git a/docs-src/code-flow.bak.md b/docs-src/code-flow.bak.md index f964e3e9..a3334291 100644 --- a/docs-src/code-flow.bak.md +++ b/docs-src/code-flow.bak.md @@ -36,7 +36,7 @@ To configure your solution for code flow + PKCE you have to set the `responseTyp showDebugInformation: true, - // Not recommented: + // Not recommended: // disablePKCI: true, }; ``` diff --git a/docs/additional-documentation/code-flow-+-pcke.html b/docs/additional-documentation/code-flow-+-pcke.html index df0086b6..f5040d3a 100644 --- a/docs/additional-documentation/code-flow-+-pcke.html +++ b/docs/additional-documentation/code-flow-+-pcke.html @@ -80,7 +80,7 @@

Code Flow

showDebugInformation: true, - // Not recommented: + // Not recommended: // disablePKCI: true, };

After this, you can initialize the code flow using:

  this.oauthService.initCodeFlow();

There is also a convenience method initLoginFlow which initializes either the code flow or the implicit flow depending on your configuration.

diff --git a/docs/classes/AuthConfig.html b/docs/classes/AuthConfig.html index 8e89d28b..c071c5a0 100644 --- a/docs/classes/AuthConfig.html +++ b/docs/classes/AuthConfig.html @@ -757,7 +757,7 @@

-

Code Flow is by defauld used together with PKCI which is also higly recommented. +

Code Flow is by default used together with PKCI which is also highly recommended. You can disbale it here by setting this flag to true. https://tools.ietf.org/html/rfc7636#section-1.1

@@ -2537,7 +2537,7 @@

public useSilentRefresh?; /** - * Code Flow is by defauld used together with PKCI which is also higly recommented. + * Code Flow is by default used together with PKCI which is also highly recommended. * You can disbale it here by setting this flag to true. * https://tools.ietf.org/html/rfc7636#section-1.1 */ diff --git a/docs/classes/JwksValidationHandler.html b/docs/classes/JwksValidationHandler.html index c85a137b..344898d0 100644 --- a/docs/classes/JwksValidationHandler.html +++ b/docs/classes/JwksValidationHandler.html @@ -313,7 +313,7 @@

import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks'; Please note, that this dependency is not needed for the **code flow**, -which is nowadays the **recommented** one for single page applications. +which is nowadays the **recommended** one for single page applications. This also results in smaller bundle sizes. `; diff --git a/docs/injectables/OAuthService.html b/docs/injectables/OAuthService.html index 469f1f93..22419be7 100644 --- a/docs/injectables/OAuthService.html +++ b/docs/injectables/OAuthService.html @@ -7379,7 +7379,7 @@

-

Code Flow is by defauld used together with PKCI which is also higly recommented. +

Code Flow is by default used together with PKCI which is also highly recommended. You can disbale it here by setting this flag to true. https://tools.ietf.org/html/rfc7636#section-1.1

diff --git a/docs/miscellaneous/variables.html b/docs/miscellaneous/variables.html index bc3b0236..be8cab9f 100644 --- a/docs/miscellaneous/variables.html +++ b/docs/miscellaneous/variables.html @@ -241,7 +241,7 @@

import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks'; Please note, that this dependency is not needed for the **code flow**, -which is nowadays the **recommented** one for single page applications. +which is nowadays the **recommended** one for single page applications. This also results in smaller bundle sizes. ` diff --git a/projects/lib/src/auth.config.ts b/projects/lib/src/auth.config.ts index ed14be99..720edcf7 100644 --- a/projects/lib/src/auth.config.ts +++ b/projects/lib/src/auth.config.ts @@ -256,7 +256,7 @@ export class AuthConfig { public useSilentRefresh?; /** - * Code Flow is by defauld used together with PKCI which is also higly recommented. + * Code Flow is by default used together with PKCI which is also highly recommended. * You can disbale it here by setting this flag to true. * https://tools.ietf.org/html/rfc7636#section-1.1 */ diff --git a/projects/lib/src/token-validation/jwks-validation-handler.ts b/projects/lib/src/token-validation/jwks-validation-handler.ts index 0135c8a6..0385a0e5 100644 --- a/projects/lib/src/token-validation/jwks-validation-handler.ts +++ b/projects/lib/src/token-validation/jwks-validation-handler.ts @@ -13,7 +13,7 @@ After that, you can import it into your application: import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks'; Please note, that this dependency is not needed for the **code flow**, -which is nowadays the **recommented** one for single page applications. +which is nowadays the **recommended** one for single page applications. This also results in smaller bundle sizes. `;