SCIM application development CLI
Project description
scim2-cli
An utility command line to help you perform requests against a SCIM server, while validating input and response payloads. It also uses scim2-tester to perform a SCIM server compliance test.
What's SCIM anyway?
SCIM stands for System for Cross-domain Identity Management, and it is a provisioning protocol. Provisioning is the action of managing a set of resources across different services, usually users and groups. SCIM is often used between Identity Providers and applications in completion of standards like OAuth2 and OpenID Connect. It allows users and groups creations, modifications and deletions to be synchronized between applications.
Installation
pip install scim2-cli
Usage
Check the reference for more details.
Here is an example of resource creation:
$ scim2 https://auth.example --headers "Authorization: Bearer 12345" create user << EOL
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"userName": "bjensen@example.com"
}
EOL
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "2819c223-7f76-453a-919d-413861904646",
"userName": "bjensen@example.com",
"meta": {
"resourceType": "User",
"created": "2010-01-23T04:56:22Z",
"lastModified": "2011-05-13T04:42:34Z",
"version": 'W\\/"3694e05e9dff590"',
"location": "https://example.com/v2/Users/2819c223-7f76-453a-919d-413861904646",
},
}
Here is an example of resource query:
$ scim2 https://auth.example --header "Authorization: Bearer 12345" query user 2819c223-7f76-453a-919d-413861904646
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "2819c223-7f76-453a-919d-413861904646",
"userName": "bjensen@example.com",
"meta": {
"resourceType": "User",
"created": "2010-01-23T04:56:22Z",
"lastModified": "2011-05-13T04:42:34Z",
"version": 'W\\/"3694e05e9dff590"',
"location": "https://example.com/v2/Users/2819c223-7f76-453a-919d-413861904646",
}
}
scim2-cli belongs in a collection of SCIM tools developed by Yaal Coop, with scim2-models, scim2-client and scim2-tester
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scim2_cli-0.1.3.tar.gz
.
File metadata
- Download URL: scim2_cli-0.1.3.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.10.0-arch1-2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2439cff65b2b019e2752fed48706df3e5f6b0fcb35fad9edb76b876fba008cf1 |
|
MD5 | b8ff99dcd5d82a6dc7b2d21149128eba |
|
BLAKE2b-256 | bfcbbcb00fc6164b7adea436e2d3a6f96cb0da153d1af078ee8727efc79ab034 |
Provenance
File details
Details for the file scim2_cli-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: scim2_cli-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.10.0-arch1-2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1603df140ec9e5958c18ffe09f6bdbdb6b13110378657be23af1a7c0be40e7e |
|
MD5 | 59a1f801cd4fb1b42eb4424e4492ef99 |
|
BLAKE2b-256 | cffb4fa7370eff1a5a56cb6a33425902d4688b605e23a4261dc42632d22caab5 |