SCIMReferenceCode
SCIMReferenceCode copied to clipboard
Reference code to build a SCIM endpoint to automate provisioning
I'm having troubles with the code running on a Azure App Service, that revolves around Json Converters. It seems like the conversions are being converted in Sample project differently that...
I think there's a design flaw around pagination. The provider implementation in WebHostSample seems to be responsible for pagination (although it does not currently .Skip(), it just .Take()s), but ProviderBase...
Your test suite tries to PATCH a group with the following call: PATCH http://{{Server}}{{Port}}/{{Api}}/Groups/{{groupid}} ``` { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ { "name": "addMember", "op": "add", "path": "members", "value":...
In the page https://github.com/AzureAD/SCIMReferenceCode/wiki/Test-Your-SCIM-Endpoint there is a link named **_https://aka.ms/ProvisioningPostman_** pointing to **https://www.postman.com/collections/d9541c318fbe2c83b62c** that json file is not matching the last one on master https://github.com/AzureAD/SCIMReferenceCode/blob/master/PostmanCollection.json which contains at least one...
Current implementation of the json serialization and de serialization forces user to add newtonsoft to the controllers globally which is a problem if someone tries to integrate the scim endpoints...
Hi, Not an Issue, but rather a question... I was searching for a nuget package for integrating SCIM into an enterprise application. There is Microsoft.SystemForCrossDomainIdentityManagement package which seems older and...
If we first add a "work" phone number all worked well. Now howver we add a "mobile" number with a patch request. It would then see that we had any...
I have been trying to use the sample code provided here but it seems that there are filter expressions (that are used in the postman collection and are documented as...
I had to face this issue while adding Microsoft.SystemForCrossDomainIdentityManagement package in my .Net Standard app. For now, I just moved to .Net Framework but I need .Net Standard support for...