-
Notifications
You must be signed in to change notification settings - Fork 130
JSON RPC Examples
hughchiu edited this page Nov 16, 2018
·
2 revisions
import requests
import json
url = 'http://127.0.0.1:7667' # The RPC server url
body = {"method":"xdag_state", "params":[], "id":1}
resp = requests.post(url, data = json.dumps(body))
print(resp.text)
var request = require('request');
url = 'http://127.0.0.1:7667'; // The RPC server url
postData = {"method":"xdag_state", "params":[], "id":1};
request({
url: url,
method: "POST",
json: true,
headers: {
"content-type": "application/json",
},
body: postData
}, function(error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
}
});