token_auth
Validate and manage authentication tokens for secure API access on CyberMCP. Ensure token integrity, type, and expiration for enhanced security testing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expires_in | No | Token expiration time in seconds | |
refresh_token | No | Refresh token (if available) | |
token | Yes | Authentication token | |
token_type | No | Token type (Bearer, JWT, etc.) | Bearer |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"expires_in": {
"description": "Token expiration time in seconds",
"type": "number"
},
"refresh_token": {
"description": "Refresh token (if available)",
"type": "string"
},
"token": {
"description": "Authentication token",
"type": "string"
},
"token_type": {
"default": "Bearer",
"description": "Token type (Bearer, JWT, etc.)",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}