josephthomas5566
josephthomas5566
yes . .net core app.. I will check this. Base code was taken from https://github.com/microsoft/PowerBI-Developer-Samples/tree/master/.NET%20Core/Embed%20for%20your%20organization/UserOwnsData To this we added custom redirect_uri
Unfortunately it is not working. Not sure if the redirect code is correct. This is still looping ( or not sure if the authentication is happening..) .. The Azure AD...
Yes.. using Both. using Microsoft.Identity.Web; using Microsoft.Identity.Web.UI; Another observation is Oauth2.0 tracer is not returning "clientinfo" when we do redirect_uri ,but gives that when we do without that( on Internal-...
Thanks .. hopefully someone from this team can help us here...
Yes. I have done that.. and have called the below in configure.. app.UseForwardedHeaders(new ForwardedHeadersOptions() { ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto }); For the other items the order is as below...
i had a typo and fixed it.. Now i am back to this error (that is interesting .. from infinte loop back to saying the POST is not accessible).. This...
I have removed the conflict in the latest iteration.. Can you let me know how to 1) enable ForwardedHeaders.XForwardedHost 2) how to fix the request parameters to autogenerate. ( Our...
- Yes.. Correct this is the expected one. But actual is what is getting reconstructed and hence custom redirect_URI Expected: https://product.portal.example.org/link/signin-oidc Actual: https://product.example.org/link/signin-odic - How do get the expected values...
Enabled the logger ..it says .. Microsoft.Identity.Client.MsalServiceException: A configuration issue is preventing authentication - check the error message from the server for details.You can modify the configuration in the application...
Seeing some light at the end of the tunnel. The initil authentication is going through.. Need to see if the authentication remain valid for the components i pullled in. Changes...