Get the auth state for a user from the launch token.
Parameters
Output
Encoding
application/jsondid
stringdid
Optional
The did of the user
handle
string
Optional
No description available.
name
string
Optional
No description available.
token
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": {
"did": {
"type": "string",
"format": "did",
"description": "The did of the user"
},
"name": {
"type": "string"
},
"token": {
"type": "string"
},
"handle": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"launchToken"
],
"properties": {
"launchToken": {
"type": "string",
"description": "The launch token provided by the service"
}
}
},
"description": "Get the auth state for a user from the launch token."
}