41 lines
404 B
Markdown
41 lines
404 B
Markdown
# JSON-RPC
|
|
|
|
## 요청
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"method": "doSomething",
|
|
"params": {
|
|
...
|
|
},
|
|
"id": ...
|
|
}
|
|
```
|
|
|
|
## 응답
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"result" : {
|
|
...
|
|
},
|
|
"id": xxx
|
|
}
|
|
```
|
|
|
|
### 오류 응답
|
|
|
|
```json
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"error" : {
|
|
"code": xx,
|
|
"message": "xxx"
|
|
},
|
|
"id": xxx
|
|
}
|
|
```
|
|
|
|
https://www.jsonrpc.org/ |