SCIMReferenceCode icon indicating copy to clipboard operation
SCIMReferenceCode copied to clipboard

Reference code to build a SCIM endpoint to automate provisioning

Results 58 SCIMReferenceCode issues
Sort by recently updated
recently updated
newest added

Is there any plans to upgrade this project to support .net 7 or above? It still uses deprecated dependencies like the Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim 2.2 Thanks

The ReferenceCode doesn't support SCIM Custom Schema extensions. Over the method AddCustomAttribute() on Core2GroupBase or Core2UserBase you are able to add custom attributes. However this attribut will not be serialized...

enhancement

Happened to see some wso2 documentation on patch and decided to try the two operations against the reference code and the pathless variation just fails miserably, skipping the patch itself....

Doing some tinkering with the SCIM reference sample and ran into a strange thing. Doing var patch1 = PatchOperation2Combined.Create(OperationName.Replace, Path.Create(AttributeNames.Name + "." + AttributeNames.GivenName).ToString(),"new name"); ends up with the value...

Hi Guys, I had implemented Scim Application with our internal system APIs to sync users only, facing an issue ProviderBase class abstract methods QueryAsync, RetrieveAsync calling weirdly When I perform...

question

Bumps [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) from 5.6.0 to 5.7.0. Release notes Sourced from System.IdentityModel.Tokens.Jwt's releases. 5.7.0 Security fixes See https://aka.ms/IdentityModel/Jan2024/zip and https://aka.ms/IdentityModel/Jan2024/jku for details. Commits 4a32908 Merged PR 10643: Fix ZIP issue 66c2604...

dependencies

The test cases provided for Postman has mismatched data field names and as a result, The returned response from the api has null values for those mismatched fields. Example: Request...

public static bool TryGetRequestIdentifier(this HttpRequestMessage request, out string requestIdentifier) { request?.Headers.TryGetValues("client-id", out IEnumerable _); requestIdentifier = Guid.NewGuid().ToString(); return true; } What is the purpose of `request?.Headers.TryGetValues("client-id", out IEnumerable _)`?

I have deploy the sample on Ad Azure free for testing and I get an error when call the api with WPF application (also with blazor app with identitifcation) error...

From my understanding, as per the SCIM specification, the ServiceProviderConfig discover endpoint path should be `/ServiceProviderConfig`, not `/serviceConfiguration`. Is this a bug in the postman test?

bug
rfc alignment