Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solidcouch/solid-identity
Simple solid identity for REST services - monorepo
https://github.com/solidcouch/solid-identity
Last synced: about 1 month ago
JSON representation
Simple solid identity for REST services - monorepo
- Host: GitHub
- URL: https://github.com/solidcouch/solid-identity
- Owner: solidcouch
- License: mit
- Created: 2024-10-05T17:24:20.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-09T13:29:57.000Z (about 1 month ago)
- Last Synced: 2024-10-10T06:15:55.821Z (about 1 month ago)
- Language: TypeScript
- Size: 327 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SoId - Solid Identity
With _Solid Identity_, you can give your Solid service a Solid-OIDC-compatible identity.
## Packages
- [`@soid/core`](https://npmjs.com/package/@soid/core) - Core methods.
- [`@soid/koa`](https://npmjs.com/package/@soid/koa) - Koa middleware.## How does it work?
There are three endpoints that need to be set up:
- `/.well-known/openid-configuration`
- `/path/to/jwks`
- `/path/to/webId`For more details, you can check the output of `getEndpoints(webId)` from the `@soid/core` package.
## Limitations
The identity — particularly the `.well-known` endpoint — must be hosted at the root URL (not at a subpath). Therefore, you'll likely need a dedicated (sub)domain for the service.