var timeout;
document.onmousemove = function(){
clearTimeout(timeout);
timeout = setTimeout(function(){alert("move your mouse");}, 60000);
}
Invoke-RestMethod -Method Get -Uri "https://faucetbox.com/api/v1/balance/?api_key=myapikey"
Can any figure out how to get 5 last payment?
https://faucetbox.com/api/v1/payouts/
count=5&api_key=MyAPIkey¤cy=BTC
And how to send btc?
Try to use the method listed here to send a POST request to FaucetBox. It would probably look similar to this:
$postParams = @{count='5';api_key='APIKEY';currency='BTC'}
Invoke-WebRequest -Uri https://faucetbox.com/api/v1/payouts/ -Method POST -Body $postParams