Activities of "liangshiwei"

I don't know yet.

Could you try this?

Configure<OpenIddictServerOptions>(options =>
{
    options.TokenValidationParameters.IssuerValidator = TokenWildcardIssuerValidator.IssuerValidator;
    options.TokenValidationParameters.ValidIssuers = new[]
    {
        "https://api.mydomain.com/",
        "https://{0}.api.mydomain.com/"
    };
});

If still not working, could you share an example project with me via email? I will check it. My email is shiwei.liang@volosoft.com thanks.

This is the PR that will fix the problem.

https://github.com/abpframework/abp/pull/19983

If I do /Pages/Account the Host doesn't load.

can you share some screenshots

HI,

Because it is a new independent transaction, EF Core entity tracking doesn't detect them

Hi,

Because creating shared projects allows for better reuse of components, you may have other services that need to use these components in the future.

another problem when using app.UsePathBase is that the language selection does not work in either the mobile view or the desktop view. After selecting the language, the URL changes from “https://tbfs001wvv.powerentity.com/BookStore” to “https://tbfs001wvv.powerentity.com/https://tbfs001wvv.powerentity.com/BookStore”

You don't need to app.UsePathBase

What does not work with the MobileNavbar is the menu item “Login” with href=“/account/login”. Can I overwrite this href tag? I haven't found anything about this.

This seems looks problem, we will fix it in the next patch version

On the login page in the mobile view, I cannot see the optional login with “Azure Active Directory OpenId” and I cannot scroll up the login page. The page is cut off.

We fixed the problem, but you need to upgrade your version. This is a temporary solution: https://support.abp.io/QA/Questions/7251/Issue-on-login-page-745---81x#answer-3a12cb4a-ae51-7bbd-2ccb-de52af9d6e02

HI,

As I said, this is how the value object works, Value objects with the same property value are considered the same object.

You should consider use Entity instead of Value object

I think this is how the value object works : https://docs.abp.io/en/abp/latest/Value-Objects

Two Entities with the same properties but with different Ids are considered as different entities. However, Value Objects have no Ids and they are considered as equals if they have the same property values.

I could not reproduce the problem

It looks like no problem.

If you use this example locally, will it work as expected? https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver/OpenIddict/NG

Showing 11 to 20 of 4879 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11