Forum Discussion
HungBI
4 years agoFrequent Visitor
Error IDX21323: RequireNonce is 'True'.
Hi everyone, I got a problem really hard to fix. I'm using the "Embed for your organization" and the asp.net MVC code sample from the PowerBI website. I have updated DLL from NuGet. Using Net 4...
Anonymous
4 years agoNot applicable
Hi HungBI ,
Did you try the solution in the following link?
Troubleshooting IDX21323: RequireNonce is ‘System.Boolean’
Add this to Configuration() in Startup.cs:
AuthenticationType = “ApplicationCookie”,
CookieSameSite = SameSiteMode.None,
CookieSecure = CookieSecureOption.Always
And adding this to web.config:
<system.web>
<sessionState cookieSameSite=”None”/>
<httpCookies requireSSL=”true” />
</system.web>
Best Regards