Activities of "clearlaunch"

  • ABP Framework version: v5.1.4
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

I want my new User ExtraProperties to show up on my Angular Registration page and Profile page.

I have already added new User ExtraProperties and they show up in the admin UI for users following this guide. https://docs.abp.io/en/abp/latest/Module-Entity-Extensions

I'm not sure what I need to do for the Account pages.

  • Do I need to pull in the source code for the account module, I would prefer not to?
  • Do I need to replace components?

The documentation is not clear in this area as far as I can tell and this is a very basic use case in my opinion.

In my Angular application I'm trying to call some code to initialize my application after a user has successfully logged in.

I was using the separate login pages from the server so I had this initialization in the AppModule since the user was being authenticated before starting the angular app.

Now I've switched to the login pages within angular so the AppModule creation happens before I know a user has successfully logged in.

Any suggestions on a single point of entry for Angular when a user has successfully finished login.

  • ABP Framework version: v5.1.4
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"!
  • LoginRedirects.PNG

This config works for Authorization Code Flow const oAuthConfig = { issuer: 'https://localhost:44329', redirectUri: baseUrl, clientId: 'TealTech_App', responseType: 'code', scope: 'offline_access TealTech', requireHttps: true, };

This config brings me to the login loop for Resource Owner Password Flow const oAuthConfig = { issuer: 'https://localhost:44329', // IdentityServer url clientId: 'TealTech_App', dummyClientSecret: 'secret pulled from [IdentityServerClientSecrets] table', scope: 'offline_access TealTech', }; **Is dummyClientSecret the proper key? I've also tried clientSecret but same behavior.

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 14, 2025, 14:54