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
ronnoc
Advocate II
Advocate II

Access token setting expiration times

I have seen many posts about how to prevent token expiration but I am currently looking for the opposite solution,

 

It seems the expiration in my tokens is being ignored. The following is the embed token code snippet in my ASP.net dashboard controller, posting the token to an Angular 2 front end to be fetched and displayed in an iFrame using the powerbi-client.js library.  

 

 

var embedToken = PowerBIToken.CreateReportEmbedToken(bi_workspaceCollection, bi_workspaceId, bi_Id, expiration: DateTime.Now.AddMinutes(5.0)
, UserID.ToString(), roles: new List<string>() { "UserAccess", "UserDataSourceAccess" });

 

 

Is there something I am missing in my approach? Any help is appreciated.

 

Thank you for your time.

1 ACCEPTED SOLUTION
Eric_Zhang
Employee
Employee


@ronnoc wrote:

I have seen many posts about how to prevent token expiration but I am currently looking for the opposite solution,

 

It seems the expiration in my tokens is being ignored. The following is the embed token code snippet in my ASP.net dashboard controller, posting the token to an Angular 2 front end to be fetched and displayed in an iFrame using the powerbi-client.js library.  

 

 

var embedToken = PowerBIToken.CreateReportEmbedToken(bi_workspaceCollection, bi_workspaceId, bi_Id, expiration: DateTime.Now.AddMinutes(5.0)
, UserID.ToString(), roles: new List<string>() { "UserAccess", "UserDataSourceAccess" });

 

 

Is there something I am missing in my approach? Any help is appreciated.

 

Thank you for your time.


@ronnoc

As per this documentation, the minium life for an accesstoken is 10 minutes, so try to extend the parameter to at least 10 minutes. Based on my test, the token generated with less than 10 minutes life still works for 10 minutes, even though the "exp" filed(decode token at http://jwt.io) shows the life time they were expected.

DateTime.Now.AddMinutes(10.0)

View solution in original post

1 REPLY 1
Eric_Zhang
Employee
Employee


@ronnoc wrote:

I have seen many posts about how to prevent token expiration but I am currently looking for the opposite solution,

 

It seems the expiration in my tokens is being ignored. The following is the embed token code snippet in my ASP.net dashboard controller, posting the token to an Angular 2 front end to be fetched and displayed in an iFrame using the powerbi-client.js library.  

 

 

var embedToken = PowerBIToken.CreateReportEmbedToken(bi_workspaceCollection, bi_workspaceId, bi_Id, expiration: DateTime.Now.AddMinutes(5.0)
, UserID.ToString(), roles: new List<string>() { "UserAccess", "UserDataSourceAccess" });

 

 

Is there something I am missing in my approach? Any help is appreciated.

 

Thank you for your time.


@ronnoc

As per this documentation, the minium life for an accesstoken is 10 minutes, so try to extend the parameter to at least 10 minutes. Based on my test, the token generated with less than 10 minutes life still works for 10 minutes, even though the "exp" filed(decode token at http://jwt.io) shows the life time they were expected.

DateTime.Now.AddMinutes(10.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.