Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
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.
Solved! Go to Solution.
@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.
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)
@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.
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)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |