mold_signDebug
Debug and validate API request signatures by generating normalized strings, Base64 signatures, URL-encoded signatures, and final request URLs for CloudStack API calls.
Instructions
정규화 문자열, 서명(Base64), URL 인코딩 서명, 최종 요청 URL을 생성해 점검합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKeyField | No | ||
command | Yes | ||
includeResponse | No | ||
params | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKeyField": {
"enum": [
"apiKey",
"apikey"
],
"type": "string"
},
"command": {
"type": "string"
},
"includeResponse": {
"type": "boolean"
},
"params": {
"additionalProperties": {
"type": [
"string",
"number",
"boolean"
]
},
"type": "object"
}
},
"required": [
"command"
],
"type": "object"
}