Get a token for a user to authenticate with a service.
Parameters
Output
Encoding
application/jsontoken
string
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"token"
],
"properties": {
"token": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"aud"
],
"properties": {
"aud": {
"type": "string",
"format": "did",
"description": "The DID of the service that the user will authenticate with"
}
}
},
"description": "Get a token for a user to authenticate with a service."
}