Skip to main content

Solid authentication with client credentials

Project description

Solid Client Credentials

Solid authentication with client credentials.

Unix Build Status Coverage Status PyPI License PyPI Version PyPI Downloads

Setup

Requirements

  • Python 3.10+ (likely works with lower versions, but not tested)

Installation

$ pip install SolidClientCredentials

Use Case

!!! note Client credentials are not standardized, thus you can't run your application through any Solid pod. However, users from any provider can give your app access through standardized mechanisms (eg ACL).

You can use client credentials to create a server-side application that authenticates as a webId on ESS or CSS. After obtaining the client credentials for a webId, you can use them to make authenticated requests on behalf of this account. You will be able to access all resources this webId has access to. If you want to access data of other users, they must grant access rights to your apps webId.

See also: https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/authenticate-nodejs-script/

Usage

To use this package you first need valid client credentials (see below). Given the client credentials you can use it as follows:

from solid_client_credentials import SolidClientCredentialsAuth, DpopTokenProvider
import requests

client_id = 'your-id'
client_secret = 'your-secret'

# The server that provides your account (where you login)
issuer_url = 'https://login.inrupt.com'

# create a token provider
token_provider = DpopTokenProvider(
    issuer_url=issuer_url,
    client_id=client_id,
    client_secret=client_secret
)
# use the tokens with the requests library
auth = SolidClientCredentialsAuth(token_provider)

res = requests.get('https://example.org/private/stuff', auth=auth)
print(res.text)

Obtaining client credentials

This is currently only possible with ESS and CSS.

ESS

ESS allows to manually obtain client credentials: https://login.inrupt.com/registration.html

CSS

CSS allows to automatically obtain client credentials: https://communitysolidserver.github.io/CommunitySolidServer/5.x/usage/client-credentials/

You can also look at css_utils.py to see how this maps to python.

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

solidclientcredentials-1.0.3.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

solidclientcredentials-1.0.3-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

Details for the file solidclientcredentials-1.0.3.tar.gz.

File metadata

  • Download URL: solidclientcredentials-1.0.3.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.12.3 Linux/6.11.0-17-generic

File hashes

Hashes for solidclientcredentials-1.0.3.tar.gz
Algorithm Hash digest
SHA256 61f26a00657af401a7362772682af658419db2076b6b2418c1fc011eb6b7c890
MD5 2a809e02b3c1c33ec9be75334a803254
BLAKE2b-256 aa9cd36869d76b20ab8516ef7bed55b2d7f924b684ec63af2cf5557abae4508a

See more details on using hashes here.

File details

Details for the file solidclientcredentials-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for solidclientcredentials-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 28a814d7b9a1353be104d81fa7f0abf416a96406a711fb34eb3630ee7861aef9
MD5 5f135f571177743c8431c6bb014271ea
BLAKE2b-256 dd21b9eca20d224eb7268b6b66291aa2ec00a860f00a086df1986acd1496ceb1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page