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
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
Please Make sure that
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
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?