Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
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); }Как решить рекапчу 2 в пост запросе?
-
@bas_usher said in Как решить рекапчу 2 в пост запросе?:
Привет ребят! Столкнулся с такой проблемой, пишу скрипт на пост\гет запросах, вот при регистрации после заполнения даных юзера нужно решить рекапчу 2 в запросе..
подскажите пожалуйста как ее отправить и получить решение правильноМожете ради исключения воспользоваться поиском
https://community.bablosoft.com/topic/1441/работа-get-post-решение-recaptcha-v2-без-браузера
-
@bas_usher Вот инструкция к ним - https://anticaptcha.atlassian.net/wiki/spaces/API/pages/4227074/createTask
-
@bas_usher said in Как решить рекапчу 2 в пост запросе?:
@uraabk та я просто 0 в таких делах( понятия не имею как его сложить и куда пихнуть(
В действие "выполнить код":
solver_properties_clear("antigate-newapi") antigate-newapi([[KEY]]) solver_property("antigate-newapi","method","userrecaptcha") solver_property("antigate-newapi","googlekey",[[SITEKEY]]) solver_property("antigate-newapi","pageurl",[[URL]]) solve_base64("antigate-newapi", "")! [[RES]] = _result()