Hi,
I'm trying to implement the ability to read Outlook emails in my application (https://learn.microsoft.com/en-us/training/modules/msgraph-dotnet-core-show-user-emails/1-introduction), but I'm facing a problem because Graph needs to launch the services services // Add support for OpenId authentication .AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) failed
because an OpendConnectId Schema already exists
I think This code causes issue in Startup.cs
services // 2. Add support for OpenId authentication
.AddMicrosoftIdentityWebApp(Configuration)
How to fix this problem THANKS
Hi,
I'm trying OpenIconnect services but got this issue :
appsettings
"OpenId": { "IsEnabled": "true", "Authority": "https://login.microsoftonline.com/{tenant}/v2.0", "ClientId": "XXXXXXXX", "ClientSecret": "XXXXXXXX, "ValidateIssuer": "false", "ResponseType": "code", "ClaimsMapping": [ { "claim": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier", "key": "http://schemas.microsoft.com/identity/claims/objectidentifier" } ]
i change also this method ` public virtual string GetUserNameFromClaims(List
var emailClaim = claims.FirstOrDefault(c => c.Type == "unique_name");
if (emailClaim != null)
{
return emailClaim.Value.ToMd5();
}
emailClaim = claims.FirstOrDefault(c => c.Type == ClaimTypes.Email);
if (emailClaim != null)
{
return emailClaim.Value;
//return claims.First(c => c.Type == ClaimTypes.Email)?.Value;
}
throw new UserFriendlyException($"Both unique_name and {ClaimTypes.Email} claims are missing!");
}` Thks for help
Hi,
Is it possible to display a dynamic entity properties, in a view and how please ? The objective being to dynamically display the position and the dynamic field in a view
Thks
Hi
is it possible to allow tenants using Stripe for their own customers?
Thanks for your help
Hi Can I add more visual settings choices and add a new template? And how can I update the metronic 8 template it seems not be the last Thks
Hi,
I wanted to know if you knew if it is possible to integrate Elsa 2 with our own interface and form
the idea is to allow each tenant to inject parameters into workflows already created
thanks in advance