cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sato89
Helper I
Helper I

REST API calls with typescript-angular library

Hi everyone.

I developed an angular app with the typescript-angular PBI library downloaded here: https://app.swaggerhub.com/apis/microsoft-rs/PBIRS/2.0#/Session/CreateSession.

I have a PBI Server on-premise with some reports.

For example I call the createSession method from SessionService with these user credential object:

 
class Credentials implements UserCredentials{
userName = "...";
password = "...";
domain = "...";
}
with these informations:
- userName = second part of userName field of a user get from the Users table in PBI database after the "\" (domain\username)
- password = the password
- domain = first part of userName field of a user get from the Users table in PBI database before the "\" (domain\username)
 
I receive always 400 BAD REQUEST from this call:
 
this.sessionSrv.createSession(cred).subscribe(result =>{
console.log("login result", result);
},
error =>{
console.log("login error", error);
});
 
in app.module.ts I add this in "providers array:
{provide: BASE_PATH, useValue: '<PBI web portal URL from Report Server Configuration Manager>'}
 
What am I doing wrong? Do I need to make configurations on my PBI Server side to activate the rest api?
Thank you in advance.
 
Best regards.
0 REPLIES 0

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors