I am trying to display page content of my OneNote's page using Angular Web. Although I can get the other contents, I cannot get images from OneNote page. Here is the code that I am using for getting page content and the error.
public async getOneNoteContent(pageUrl: any) {
let url = pageUrl+'/?preAuthenticated=true';
let token = await this.authService.getAccessToken();
let header = new HttpHeaders().set('Authorization', 'Bearer '+token);
return(this.http.get(url, {headers:header, responseType: 'text'}));}
How can I solve this. Please help me.