Why there in not any implimentation of IProfileService?!
See original GitHub issueI Expect an implementation of IProfileService
interface.
What is the alternative of it?
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Can't implement IProfileService properly in Identity Server 4
First one is that the disappeared claims are mentioned by type in the context under context.RequestedClaimTypes (no values, just the types). The ...
Read more >Profile Service — IdentityServer4 1.0.0 documentation
Often IdentityServer requires identity information about users when creating tokens or when handling requests to the userinfo or introspection endpoints. By ...
Read more >Startup — IdentityServer4 1.0.0 documentation
UseIdentityServer includes a call to UseAuthentication , so it's not necessary to have both. There is no additional configuration for the middleware. Be...
Read more >IdentityServer4: Adding Additional Claims to the Token
In this post let's see how we can additional claims to the token. This can be either creating tokens or when handling requests...
Read more >DI Extension Methods
Registers IResourceStore implementation based on the in-memory collection of ApiResource configuration objects. Caching Configuration Data. Extension methods to ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Finally, I have solved problem This is my code for anyone have problem like me.
I can use your implementation of ProfileService, there is used default
IProfileService
for Asp.Net Core Identity. Here is the place for adding your profileservice: https://github.com/skoruba/IdentityServer4.Admin/blob/master/src/Skoruba.IdentityServer4.STS.Identity/Helpers/StartupHelpers.cs#L243 - add method.AddProfileService<>()
.