IPC-API
Alternatively an application can directly communicate with the oidc-agent through UNIX domain sockets. The socket address can be obtained from the environment variable which is set by the agent (OIDC_SOCK
). The request has to be sent json encoded. We use a UNIX domain socket of type SOCK_STREAM
.
All Clients should ignore additional fields returned in a response from oidc-agent, if the client does not understand these fields. Vice versa oidc-agent ignores fields that it does not understand.
The following fields and values have to be present for the different calls:
Access Token:
Request
request
access_token
REQUIRED
account
<account_shortname>
REQUIRED if 'issuer' not used
issuer
<issuer_url>
REQUIRED if 'account' not used
min_valid_period
<min_valid_period> [s]
RECOMMENDED
application_hint
<application_name>
RECOMMENDED
scope
<space delimited list of scopes>
OPTIONAL
audience
<audience for the token>
OPTIONAL
Note that one of the fields account
and issuer
has to be present. Use account
to request an access token for a specific account configuration and issuer
when you do not know which account configuration should be used but you do know the issuer for which you want to obtain an access token. Do not provide both of these options in the same request.
Examples
The application example_application
requests an access token for the account configuration iam
. The token should be valid for at least 60 seconds and have the scopes openid profile phone
and the audiences foo
and bar
.
The application example_application
requests an access token for the provider https://example.com/
. There are no guarantees that the token will be valid longer than 0 seconds and it will have all scopes that are available for the used account configuration.
Response
status
success
access_token
<access_token>
issuer
<issuer_url>
expires_at
<expiration time>
Example:
Error Response
status
failure
error
<error_description>
info
<help_message>
The help message in the info
key is optionally and therefore might be omitted.
Example:
Mytoken:
Request
request
mytoken
REQUIRED
account
<account_shortname>
REQUIRED
mytoken_profile
<mytoken profile>
RECOMMENDED
application_hint
<application_name>
RECOMMENDED
Example
The application example_application
requests a mytoken for the account configuration iam
. The mytoken should have the AT
capability, it can only be used to obtain 7
access tokens with only the openid profile email
scope and expires after seven days.
Response
status
success
mytoken
<mytoken or transfer_code>
mytoken_issuer
<issuer_url of the mytoken instance>
oidc_issuer
<issuer_url of the OP>
expires_at
<expiration time>
Additionally, fields included in the mytoken's server response, such as restrictions
, mytoken_type
are also included.
Example:
Error Response
status
failure
error
<error_description>
info
<help_message>
The help message in the info
key is optionally and therefore might be omitted.
Example:
List of Accounts:
Request
request
loaded_accounts
REQUIRED
Examples
Response
status
success
info
<list of loaded accounts>
Example:
Error Response
status
failure
error
<error_description>
Example:
Last updated