Is there any way to get the First Name and Last Name and such fields that show up in IdentityManager while using Membership Reboot as the user/claims store to come down via claims or some other method to be used in IDS clients? I have had to manually add claims for the first / last names (given_name and family_name). I do have the profile scope included in my application in both the IDS and client configuration. Authentication and everything else appears to be working nicely. Any help would be greatly appreciated.
How to send user profile fields such as First Name and Last Name with IdentityManger/MembershipReboot?
736 Views Asked by Pugz At
1
There are 1 best solutions below
Related Questions in IDENTITYSERVER3
- Can we use/upgrade Duende Identity server for the .NET Framework applications (4.8/4.7 or below)?
- how to check Is2faEnabled in identity server while using connect/token for mobile login?
- Adding user to administrators group does not get read access to certificate
- Cookies are removed on page refresh (AngularJS)
- identity server auto-logout when user idle - not working
- Im getting an error on Google Login on Identity server
- PostAuthenticateAsync in Duende IdentityServer6
- Can Duende IdentityServer v6 be used in a .Net Framework Application?
- Identity Server - Multiple users with different access levels on different accounts
- Connecting .net 6 application with Identity Server 3
- How to migrate from IdentityServer3 to Duende IdentityServer6?
- Identity server 3 Windows authentication not working with current user
- iframe session issue in OIDC client
- IdentityServer 3 returns invalid_client when trying to authenticate with Blazor
- Use both Windows Authentication and Login forms in Same Identity as a service(IDaaS)
Related Questions in MEMBERSHIPREBOOT
- import user accounts from the BrockAllen MembershipReboot to Ory
- How to restart Partial Login mechanism in Identity Server 3
- authentication using identity server with existing database of membershipreboot
- How do I add UserClaims to ClaimsPrincipal
- Unable to get Access Token Via Fiddler IdentityServer3
- ASP.NET MVC Authorize Attribute not working
- Accessing user object across client application
- MembershipReboot with Identityserver 3 slow performance
- How to Enable Entity Framework Migrations for MembershipReboot
- IdentityServer 3 with MemebershipReboot , how to implement Custom Client store
- How to send user profile fields such as First Name and Last Name with IdentityManger/MembershipReboot?
- Multiple Client Types
- Database Migration MembershipReboot
- MembershipReboot lockout functionality issue
- brockallen.MembershipReboot account confirmation not working
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Frankly, I haven't done this. But I would look into https://identityserver.github.io/Documentation/docsv2/advanced/userService.html
GetProfileDataAsyncmethod.MR implementation is here(https://github.com/IdentityServer/IdentityServer3.MembershipReboot/blob/master/source/IdentityServer3.MembershipReboot/IdentityServer3.MembershipReboot.cs). You should be able to push FirstName and LastName properties as open-id claims inside
GetProfileDataAsyncmethod.