Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.