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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

403 Error When using POST to receive Report Embedded Token

I created a simple Angular project to access the Power BI API. I am following the workflow of the App Owns The Data. My first POST call received an access token with no issues which is as follows:

(client_id, username, and password data removed from code post)

I am using my account which is the owner of the workspace and the owner of the registered Azure app.

 

//API call to get the access token
      const POSTbody = new HttpParams() 
        .set('client_id','client_id')
        .set('grant_type','password')
        .set('resource','https://analysis.windows.net/powerbi/api')
        .set('username', 'username')
        .set('password', 'password')
      
      this.http.post('https://login.microsoftonline.com/common/oauth2/token',POSTbody).subscribe(
          res => { console.log(res);
            accesstoken = res.access_token;
                 console.log('Access Token: ' + accesstoken)},
          err => { console.error(err); })

The second POST call which is to https://api.powerbi.com/v1.0/myorg/groups/... using the access token from the first API call is returning a 403 (Forbidden). This is the second call:

(access_token contains the token from the first API call, group ID and report ID data removed from code post)

 

var headers = new HttpHeaders();
    headers.append('Authorization','Bearer '+ access_token)

let url = 'https://api.powerbi.com/v1.0/myorg/groups/ID/reports/ID/GenerateToken';
   

      const Embedbody = new HttpParams()   
      .set('accessLevel','View')
      
      this.http.post(url,Embedbody
        ,{headers:headers}).subscribe(
          res => {console.log(access_token)},
          err => {console.log('ERROR!')},
          
      )

I verified in Azure that my registered app as the correct permissions:

Windows Azure Active Directory:

    Access the directory as the signed-in user

    Read all users' basic profiles

    Sign in and read user profile

Power BI Service (Power BI)

    All DELEGATED PERMISSIONS except  View all contet in tenant.

 

 

Has anyone run into this issue before using the API call in an Angular app?

Is there way to receive more details in the 403 error message?

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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