This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| parent.alert("Hello"); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Injectable } from '@angular/core'; | |
| import { UserManager, User } from 'oidc-client'; | |
| import { Observable } from 'rxjs/Observable'; | |
| import 'rxjs/add/observable/fromPromise'; | |
| @Injectable() | |
| export class AuthService { | |
| private userManager: UserManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Injectable } from '@angular/core'; | |
| import { HttpErrorResponse, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; | |
| import { Observable } from 'rxjs/Observable'; | |
| import 'rxjs/add/operator/mergeMap'; | |
| import { AuthService } from './auth.service'; | |
| @Injectable() | |
| export class TokenInterceptor implements HttpInterceptor { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| intercept (request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { | |
| return this.auth.getUser() | |
| .mergeMap((user: User) => { | |
| if (user) { | |
| // clone and modify the request | |
| request = request.clone({ | |
| setHeaders: { | |
| Authorization: `Bearer ${user.access_token}` | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| intercept (request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { | |
| return this.auth.getUser() | |
| .mergeMap((user: User) => { | |
| // ... modify the request here ... | |
| return next.handle(request); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'rxjs/add/operator/mergeMap'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| getUser (): Observable<User> { | |
| return Observable.fromPromise(this.userManager.getUser()); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Observable } from 'rxjs/Observable'; | |
| import 'rxjs/add/observable/fromPromise'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // THIS DOESN'T WORK! | |
| intercept (request, next) { | |
| this.auth.getUser().then(user => { | |
| // ... modify the request here ... | |
| next.handle(request); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| intercept (request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { | |
| return next.handle(request); | |
| } |
NewerOlder