hi
Can you try to open these two websites in Chrome and Chrome Incognito?
Thanks.
它就是应该访问4200, 这没有问题, 请检查你的反向代理配置, 它没有对css或者js生效, 我对此没有太多经验
这些css请求的网址是 4200还是44348?
css文件的http请求返回什么?
请检查浏览器的控制台, 哪些css没有加载? 这和反向代理配置有关和abp应用无关
谢谢
hi
Can we please get the reference for the login .cshtml and .cs page, we cannot see how Tenant is being derived in the pages. We have been scanning through the github repo below but could not find the page. Our intention is for the user not to key in their target tenant at login, and to have the application derive the tenant instead.
The tenant selection is from the Account layout page.
eg: https://github.com/abpframework/abp/blob/dev/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Layouts/Account.cshtml#L70-L98
What is your current MVC theme?
Where can we get the full source code for application modules? Was there a commercial repo that we can be invited to?
You can download the module source code, There is no git repos, see https://abp.io/docs/latest/suite/source-code
Thanks.
: )
hi
Can you check the Access Token and claims from Google?
Please set a breakpoint to check the accesstoken and claims .
context.Services.AddAuthentication()
.AddGoogle(GoogleDefaults.AuthenticationScheme, options =>
{
options.Events.OnCreatingTicket = ticketContext =>
{
var accesstoken = ticketContext.AccessToken;
var claims = ticketContext.Principal?.Claims.ToList();
return Task.CompletedTask;
};
// options.ClaimActions.MapJsonKey(AbpClaimTypes.Email, "your_google_email_claim_key");
// options.ClaimActions.MapJsonKey(AbpClaimTypes.UserName, :"your_google_username_claim_key");
// options.ClaimActions.MapJsonKey(AbpClaimTypes.Name, "your_google_username_claim_key");
})
Thanks.
Hi
You are right. I will check this behavior.
Thanks.
hi
We noticed that when you click on the expanded sidebar in the main app, it doesn't immediately close. Instead, you have to move the cursor away from the expanded sidebar for the closing to happen.
Can you share a GIF?
Thanks.