Skip to content

Commit f30174e

Browse files
Merge pull request #143 from oleersoy/master
Update README.MD
2 parents 00d5d7a + b7374d3 commit f30174e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.MD

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Successfully tested with the Angular 2 and 4 and its Router, PathLocationStrateg
3636
- Token Refresh for Implicit Flow by implementing "silent refresh"
3737
- Validating the signature of the received id_token
3838
- Providing Events via the observable ``events``.
39-
- The event ``token_expires`` can be used togehter with a silent refresh to automatically refresh a token when/ before it expires (see also property ``timeoutFactor``).
39+
- The event ``token_expires`` can be used together with a silent refresh to automatically refresh a token when/ before it expires (see also property ``timeoutFactor``).
4040

4141
## Additional Features
4242
- Logging in via OAuth2 and OpenId Connect (OIDC) Implicit Flow (where user is redirected to Identity Provider)
@@ -106,7 +106,7 @@ export class AppModule {
106106
## Configuring for Implicit Flow
107107

108108
This section shows how to implement login leveraging implicit flow. This is the OAuth2/OIDC flow best suitable for
109-
Single Page Application. It sends the user to the Identity Provider's login page. After logging in, the SPA gets tokens.
109+
Single Page Applications (SPAs). It sends the user to the Identity Provider's login page. After logging in, the SPA gets tokens.
110110
This also allows for single sign on as well as single sign off.
111111

112112
To configure the library the following sample uses the new configuration API introduced with Version 2.1.
@@ -125,7 +125,7 @@ export const authConfig: AuthConfig = {
125125
// URL of the SPA to redirect the user to after login
126126
redirectUri: window.location.origin + '/index.html',
127127

128-
// The SPA's id. The SPA is registerd with this id at the auth-server
128+
// The SPA's id. The SPA is registered with this id at the auth-server
129129
clientId: 'spa-demo',
130130

131131
// set the scope for the permissions the client should request

0 commit comments

Comments
 (0)