Hello, Tell me, please, I want to pass authorization on the site, but two values are required to send a POST request
token = Hy6U3z61fflbgT2yJ% 2FVdlQ2719 &
and
uuid = 1461931540
. Found this data in the JS file on the server /doc/js/asset.7229_12d2ef725908f93d26df0ec0839cd410.js
in code
wp.requestHelper.prototype.setSystemValues = function() { this.params.data.platform = 'js'; this.params.data.token = 'Hy6U3z61fflbgT2yJ/VdlQ2719'; // TODO: from wp.settings this.params.data.uuid = parseInt( new Date().getTime() / 1000 + Math.random()*1000, 10); }; Can you please tell me how to get this data into a C # variable? Previously, I used only webrequest and webresponse and this was enough to parse the data for authorization .. And here for the first time I encountered this ... Thank you.