Created
October 5, 2018 08:15
-
-
Save krishnaanaril/eea067e360b2766eae65a88f59bf4c65 to your computer and use it in GitHub Desktop.
Call Web API to get dashboard 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
getDashboardEmbedToken(): Observable<any> { | |
let apiUrl = environment.apiEndPoint + "/api/values/getDashboardEmbedToken"; | |
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