Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.5.7 (Linux / Windows)
by
cTnko
on 14/12/2017, 21:01:19 UTC
Anyone know how to access the JSON-RPC server? Not the website but the raw JSON data behind the API

Unfortunately there doesn't seem to be a raw JSON data available (from what i can see)
Maybe @dstm could add that in the future?

The first post does seem to mention JSON api being available? It might be useful to provide a bit more info on that i guess.

You have a documentation inside the zipfile of the miner called json-rpc, everything needed in here.



Sorry to bother but, i'm with mlotis and cTnko on this one, what am I doing wrong?

I think this could help you a bit (this utilizes jquery for the $.ajax method

Code:
$.ajax({
    url: 'http://192.168.1.6:42000/',
    method: 'POST',
    dataType: 'json',
    data: {'id': 1, 'method': 'getstat'}
}).done(function (data) {
    console.log(data);
});