hi
we are got getting the OrganizationUnitID which we have in AbpUsers table, how to handle this?
What do you mean? I don't understand.
Thanks.
hi
Are there any error messages in the Browser console?
Thanks.
hi
Please try to use AddStaticHttpClientProxies in your .HttpApi.Client project,
context.Services.AddStaticHttpClientProxies(
typeof(AbpSolution1ApplicationContractsModule).Assembly,
RemoteServiceName
);
.HttpApi.Client> abp generate-proxy -t csharp -m app --url https://localhost:44332 --without-contracts
https://localhost:44332 is your api website url.
Thanks
hi
I will check this case.
Thanks.
hi
The ABP suite is not designed for API calls. All the input parameters are explained in the UI.
If you want to use the API, you can check the api http request in the Chrome Network Panel.
Thanks
hi
You don't need to add a wildcard domain to the database; you only need add it to WildcardDomainsFormat
Thanks
PreConfigure<AbpOpenIddictWildcardDomainOptions>(options =>
{
options.EnableWildcardDomainSupport = true;
options.WildcardDomainsFormat.Add("https://{0}.our.app");
});
hi
context.Services.ConfigureApplicationCookie(options =>
{
var previousOnSignedIn = options.Events.OnSignedIn;
options.Events.OnSignedIn = async cookieSignedInContext =>
{
await previousOnSignedIn(cookieSignedInContext);
// Your code
};
var previousOnSigningOut = options.Events.OnSigningOut;
options.Events.OnSigningOut = async cookieSigningOutContext =>
{
await previousOnSigningOut(cookieSigningOutContext);
// Your code
};
});
Great
hi
{} and null is no problem.
But {{}} is wrong.
Do you remember why {{}} is write to database? Can you share some code?
Thanks.