Created
October 5, 2018 08:13
-
-
Save krishnaanaril/2387fa2a7fb2746cf1b0d93c149f03a9 to your computer and use it in GitHub Desktop.
Call Web API to get report embed 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
getReportEmbedToken(): Observable<any> { | |
let apiUrl = environment.apiEndPoint + "/api/values/getReportEmbedToken?username=&roles="; | |
return this.http.get(apiUrl) | |
.pipe( | |
catchError(this.handleError) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment