Activities of "Anjali_Musmade"

Answer

Hello,

I apologies for your inconvenience, yes that link is for MVC. Angular uses oAuth2 as an authentication method.

To refresh the page without reloading (after autologin) in Angular try to add below code in app.comonent.ts

export class AppComponent {
  constructor(private authService:AuthService, private router:Router)   { }
   
   ngOnInit(): void {
    
    if (this.authService.isAuthenticated) {
      this.router.navigate(this.router.getCurrentNavigation().extras.state?.redirect || ['/']);
    }
    else {
      this.router.navigate(['/']);
    }
 }
}

Thanks

Answer

Hello,

could you please check https://community.abp.io/posts/implementing-passwordless-authentication-with-asp.net-core-identity-c25l8koj

Thanks

Hi, We will fix the problem in the next patch version. You can try to temporarily downgrade to version 8.0.2

Hello,

I follow the below steps to add module as a source code

  1. Create ABP.io project by using cli or ABP suite and check if it runs successfully.
  2. Add any module source code through cli or ABP suite

Please Make sure that

  1. Application should not be up and running at the time of adding module
  2. The version of Application and module should be same by following above steps when I add source code of Identity module to my application its working fine like

Please check by following these steps or share your steps to reproduce the issue.

Thanks,

Hello ,

Please check you error logs for any error. If is there any error just share that error message.

I am not exactly sure but i think there is something wrong with your EntityName (MyEntityDto) can you please check by changing it.

Thank you.

Hello,

please check if it helps you https://support.abp.io/QA/Questions/2103/React-Native-External-Login-Approach

thanks

Hello,

I apologies for misunderstanding. In ABP commercial when we add any module as a source code then it is given as a ProjectReference in .csproj files like

This module is professional one so its like Volo.Identity.Pro and for module source code the reference is given as a PackageReference in .csproj files like because the Professional modules are build on top of basic modules. For basic modules we need to use Nuget Package references.

Thanks

Answer

Hello,

please check this https://support.abp.io/QA/Questions/2659/Identity-API-with-JWT

Thanks

Hello,

please check https://docs.abp.io/en/abp/latest/Startup-Templates/Application and https://abp.io/Packages

Thanks,

Hi,

can you check logs under this path MyApp\aspnet-core\src\MyApp.HttpApi.Host\Logs ? please share if any logs?

Showing 371 to 380 of 1091 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 25, 2024, 05:13