0
smwasimraja@gmail.com created
when i login the page the response from api provides token only i want to get uniqueid of the user from the token how do i achieve that
2 Answer(s)
-
0
Can you try to access current user by API that is provided by ABP: https://abp.io/docs/latest/framework/ui/angular/current-user
currentUser object has
id
field on itconst currentUser = this.config.getOne("currentUser"); console.log(currentUser.id);
-
0
const c
thanks its working