It's showing me invalid meeting id.
Hi
There is no change in configuration same code is working in ABP4.1.1. version and you will also face this issue. You can download sample project from site and add azure settings into .json file then you will get this issue.
Thanks,
Hi
How we can replace services or where and what I need to add. Please suggest.
Thanks,
Hi
Is there anyone to check this issue and provide me solution?
Thanks,
Hi
In my old project azure login was working but I have upgraded all the packages from abp suite and all things are working fine. Now azure login is not working it's redirecting back to login page after azure login.
To check this issue I have created a sample project from abp suite and just added the azure settings into host appsettings.json file and added below code in hostmodule.cs class.
private static void ConfigureAzureLogin(ServiceConfigurationContext context, IConfiguration configuration)
{
context.Services.AddAuthentication().AddOpenIdConnect("AzureOpenId", "Azure", options =>
{
options.Authority = "https://login.microsoftonline.com/" + configuration["AzureAd:TenantId"] + "/v2.0/";
options.ClientId = configuration["AzureAd:ClientId"];
options.ResponseType = OpenIdConnectResponseType.CodeIdToken;
options.CallbackPath = configuration["AzureAd:CallbackPath"];
options.ClientSecret = configuration["AzureAd:ClientSecret"];
options.RequireHttpsMetadata = false;
options.SaveTokens = true;
options.GetClaimsFromUserInfoEndpoint = true;
options.Scope.Add("email");
//options.Events.OnTokenValidated = (async context =>
//{
// var debugIdentityPrincipal = context.Principal.Identity;
// var claimsFromOidcProvider = context.Principal.Claims.ToList();
//});
});
}
Now login button is coming, azure login screen is coming but after entring the credential it's redirecting to login page again. Not able to understand the reason because same code is working in ABP 4.1.1 version but it's not working in ABP 4.2.2. Please suggest me some solution for the same it's quite urgent.
Reference Link : https://community.abp.io/articles/how-to-setup-azure-active-directory-and-integrate-abp-angular-application-lyk87w5l
Thanks,
shiwei.liang@volosoft.com
Yes just sent the zoom link
Hi,
I am using 4.2.2 version.
- **ABP Framework version:**4.2.2
- UI type: Blazor
- DB provider: EF Core
Hi
I am facing one issue and not able to understand the reason behind it. After reset password it's showing success message but If I click on Go to application button then it's going to swagger link but it should open my blazor link so can you please help me.
Thanks,
Hi
I am using abp io with blazor and have many api's. Now I want to proovide 5 api access to users and don't want them to create access token for this.
So in administration section there is some section which is related to api resources and scopes. Is there any way to provide token directly? I want to give them access token and few api's access.
Please let me know how we can acheive this.
Thanks,