OIDCClient#

class gafaelfawr.config.OIDCClient(client_id, client_secret, return_uri)#

Bases: object

Configuration for a single OpenID Connect client of our server.

Parameters:
  • client_id (str) –

  • client_secret (str) –

  • return_uri (str) –

Attributes Summary

client_id

Unique identifier of the client.

client_secret

Secret used to authenticate this client.

return_uri

Acceptable return URL when authenticating users for this client.

Attributes Documentation

client_id: str#

Unique identifier of the client.

client_secret: str#

Secret used to authenticate this client.

return_uri: str#

Acceptable return URL when authenticating users for this client.