const tinsoftApiKey = "THAY_API_KEY_VAO_DAY";
HttpRequest(`https://proxy.tinsoftsv.com/api/changeProxy.php?key=${tinsoftApiKey}&location=0`)
.then(json => {
if(json.success) SetProxy ({ProxyType: "http", ProxyAddress: json.proxy});
else {
SetError (json.description);
}
})