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
datavigilante
Helper I
Helper I

Need help implementing row-level security (RLS) with embedded analytics

Hello all,

 

It looks like Microsoft just added some functionality to the GenerateToken API so that you can pass additional context for RLS as a part of your embed token:

 

https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-embedded-rls/

 

Does anyone happen to have a simple working example of this that they can share?  I just want to pass one user, role and dataset, but I don't know how to determine the dataset ID.

 

Sorry, if this is a dumb question, but how do I determine what the id is for the dataset of my report?

 

thanks!

David

1 ACCEPTED SOLUTION
craigduffy
Regular Visitor

I had the same question. Just figured it out: Similar to getting the group Id. In your power bi portal, click on the app workspace. Then select the Datasets tab on top. Select the dataset that matches your report (or view Settings) then copy the guid from the url after /datasets/.  Copy that to your code and that should do it. 

View solution in original post

4 REPLIES 4
craigduffy
Regular Visitor

I had the same question. Just figured it out: Similar to getting the group Id. In your power bi portal, click on the app workspace. Then select the Datasets tab on top. Select the dataset that matches your report (or view Settings) then copy the guid from the url after /datasets/.  Copy that to your code and that should do it. 

That's awesome, thanks Craig.

 

If you have it working, would you mind sharing your GenerateToken API syntax?

 

I'm having trouble getting the code provided for the PowerBIEmbedded_AppOwnsData sample to work:

 

var generateTokenRequestParameters = new GenerateTokenRequest("View", null, identities: new List<EffectiveIdentity> { new EffectiveIdentity(username: "username", roles: new List<string> { "roleA", "roleB" }, datasets: new List<string> { "datasetId" }) });

var tokenResponse = await client.Reports.GenerateTokenInGroupAsync("groupId", "reportId", generateTokenRequestParameters);

Like I said, I will only have one role and dataset.  Also, I don't understand why groupID and reportID are in quotes.

 

thanks,

David

I think that where I am getting stuck is how to define the EffectiveIdentity object.  In my code below, there is a squiggly line under it:

 

var generateTokenRequestParameters = new GenerateTokenRequest(
                    accessLevel:  "View", 
                    allowSaveAs: null, 
                    identities: new List<EffectiveIdentity> { new EffectiveIdentity(
                        username: "20", 
                        roles: new List<string> { "User" }, 
                        datasets: new List<string> { "07cf5f83-033d-4265-a9a0-5ba476cde601" }) });
var tokenResponse = await client.Reports.GenerateTokenInGroupAsync(GroupId, "a10024dd-907e-4c1c-baed-e12e0a896d6b", generateTokenRequestParameters);

thanks,

David

Sorry I didn't get notice earlier of your post. Here is my code that works:

 

var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view", identities: new List<EffectiveIdentity> { new EffectiveIdentity(username: userId, roles: new List<string> { role }, datasets: new List<string> { DatasetId }) });

                var tokenResponse = await client.Reports.GenerateTokenInGroupAsync(GroupId, report.Id, generateTokenRequestParameters);

Obviously userId, role, DatasetId and GroupId are string variables. Make sure your role is setup in the Power BI workbook.

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.