Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Boolean параметр в пост запросе
-
Нужно указать параметр proxied = true:
curl -X POST "https://api.cloudflare.com/client/v4/zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records" \ -H "X-Auth-Email: user@example.com" \ -H "X-Auth-Key: c2547eb745079dac9320b638f5e225cf483cc5cfdda41" \ -H "Content-Type: application/json" \ --data '{"type":"A","name":"example.com","content":"127.0.0.1","ttl":120,"priority":10,"proxied":false}'Пробовал по всякому:
"proxied",true
"proxied",1
"proxied","true"
но всегда возвращает "Invalid 'proxied' value, must be a boolean" -
@denis_krsk Можешь посказать как весь объект преобразовать в json?
Вот тут http://community.bablosoft.com/topic/2714/cloudflare-api-добавление-домена-проксирование у человека была такая же проблема, я не понял что он в итоге сделал (через модуль антикапчи?..) -
@denis_krsk дело в том что я уверен что параметры верные задаю... Ибо если просто прописать type, name, content параметры в post запрос - то все работает. (Но тогда если задать последний параметр "proxied":true, то "Invalid 'proxied' value, must be a boolean")
А вот здесь http://community.bablosoft.com/post/20671 у человека все получилось, он делал так же как и я
var VAR_DATA = JSON.stringify({"type":"A","name":[[DOMAIN]],"content":[[IP]],"proxied":true});И я вообще не понимаю что еще я мог сделать неправильно (