jelhub / scimgateway

Using SCIM protocol as a gateway for user provisioning to other endpoints
MIT License
176 stars 57 forks source link

SCIM default REST and SOAP endpoints #80

Closed edgars closed 1 year ago

edgars commented 1 year ago

Hi there,

Would be possible to show de scim schemas and wsdls ?

Besides, is there a way to present those via some URI?

jelhub commented 1 year ago

Hi,

For wsdls, no For scim, yes according to SCIM specification:

GET http://localhost:8880/ServiceProviderConfigs Specification compliance, authentication schemes, data models.

GET http://localhost:8880/Schemas Introspect resources and attribute extensions.

Regards, Jarle

jelhub commented 1 year ago

Just adding that scimgateway does not care about attributes used as long as mandatory attributes like id, userName, displayName are included where needed.

Attributes are handled by your own pluging and you have to decide what attributes to be used.

Some IdP's request schemas and some also use this schema for allowing attributes used towards scimgateway.

edgars commented 1 year ago

Thanks