Files
html-examples/Writerside/topics/Json-Rpc.md
2024-06-21 14:14:35 +09:00

404 B

JSON-RPC

요청

{
    "jsonrpc": "2.0",
    "method": "doSomething",
    "params": {
        ...
    },
    "id": ...
}

응답

{
    "jsonrpc": "2.0",
    "result" : {
        ...
    },
    "id": xxx
}

오류 응답

{
    "jsonrpc": "2.0",
    "error" : {
        "code": xx,
        "message": "xxx"
    },
    "id": xxx
}

https://www.jsonrpc.org/