Attività di "sumeyye.kurtulus"

Hello Viktor, both Login with this user and Login buttons use impersonation technique either by sending the user id or the delegated user id.

In order to customize and manage these functionalities, we recommend you to use the functions inside ImpersonationService (https://docs.abp.io/en/commercial/latest/modules/account/impersonation#angular).

If you need further customization, you can also utilize the loginUsingGrant function inside the AuthService Because, this function handles the request by getting the parameter object that would contain the necessary id and a grant type like Impersonation. (https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/core/src/lib/abstracts/auth.service.ts)

Hello, you can try customizing the default css values inside your global css file as follows,

.lpx-content-container .lpx-content {
  padding: 1.25em 1.5em 1.5em;
  margin: 0 auto;
}

Hello again. The library we are using to manage this process gets the oAuthConfig values from the environment variables and reads the dummyClientSecret value accordingly.

For this reason, we would suggest you to use the same library called OAuthService . This will allow you to manage the dummyClient value to be sent in the body and get the tokens that you may need (e.g. fetchTokenUsingPasswordFlow function).

After you have achieved this, you can set the same value back manually.

Hi, When the application call method login of ABPOAuthService, we only sent the username and password user to the request payload. As you can see on the second and third images, I believe that the login function is getting client_id, client_secret, and scope from environment.

After update the dummyClientSecret by setState function of EnvironmentService, the login function throw the exception relative to the tokenEndpoint.

However when I check that value in the environment then it still exists.

It working as expected if I

Network tab

Request body

Parameters send to login function

Login function from @abp/ng.core lib

Hello, can you also try using loginUsingGrant function to be able to give the grantType and get the token that you may be looking for?

11 - 14 di 14
Made with ❤️ on ABP v8.2.0-preview Updated on marzo 25, 2024, 15:11