Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "Bernard"

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

.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)

.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

Question

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

Question

HI,

How can i start WEB.MVC project with a landing / public html page and Login with Menu like :

I change these lines in HomeController (Web.Mvc)

to get Is it the good pratice ?

Thks

Question

Hi

is it possible to allow tenants using Stripe for their own customers?

Thanks for your help

Question

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,

after installing elsa 2, I have an issue in Usermanager the
InitializeOptionsAsync(int? tenantId) method failed

Thks

Question

Hi, Configureelsa not found

Using elsa v2.14.1 on Web.Mvc project

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

Question

Hi, I am not sure about the domain name parameter for sending emails, is the configuration below correct because it does not work

Showing 21 to 30 of 43 entries