We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25ca5c6 + bf5ef56 commit c446b7bCopy full SHA for c446b7b
README.md
@@ -71,27 +71,27 @@ npm i angular-oauth2-oidc --save
71
## Importing the NgModule
72
73
```TypeScript
74
+import { HttpClientModule } from '@angular/common/http';
75
import { OAuthModule } from 'angular-oauth2-oidc';
-[...]
76
+// etc.
77
78
@NgModule({
79
imports: [
- [...]
80
- HttpModule,
+ // etc.
81
+ HttpClientModule,
82
OAuthModule.forRoot()
83
],
84
declarations: [
85
AppComponent,
86
HomeComponent,
87
88
89
bootstrap: [
90
AppComponent
91
]
92
})
93
export class AppModule {
94
}
-
95
```
96
97
## Configuring for Implicit Flow
0 commit comments