SCIMReferenceCode
SCIMReferenceCode copied to clipboard
Reference code to build a SCIM endpoint to automate provisioning
Hi, Could there be more examples in the WebHostSample project please? At least one for Users which has the best practice of extending the main library, with static data. And...
The last two tests in the postman collection (Get all users and Get all groups). Assert that an empty resource array is returned on the body. Whilst scim specifies that...
The junk data test suite the server ignores any junk data sent on a request and creates the resource regardless. Sending a 400 request and not creating the resource is...
When an existing user is patched with a phone number that's not already in the list a null reference exception will occur. https://github.com/AzureAD/SCIMReferenceCode/blob/ae181c1d0800a2a22333f0a4081c4012f39028e8/Microsoft.SystemForCrossDomainIdentityManagement/Protocol/Core2EnterpriseUserExtensions.cs#L934-L943 This checks if the phone number already...
After the library update to support SCIM metadata, the group provider was not updated. InMemoryGroupProvider.cs is missing the code to update accordingly 'Metadata.Created' and 'Metadata.LastModified' on the following methods: -...
PatchName(this Core2EnterpriseUser user, PatchOperation2 operation) method in Core2EnterpriseUserExtensions class only updates givenName and familyName, skipping the name.formatted.
Remove typo in variable
If Members property of a group is set to null it would fail on Apply with a patch operation to add a member. Solution is a simple null check and...
I am configuring Azure User provisioning for my .NET Core web API project. I have created a sample SCIM application and deployed it on a Windows server. A specific token...