I get that error and when I enter the .js file, it indicates an error in that function that I have placed, what do I do? Is the installation wrong? ...
console:
ciuvo-contentscript.js:5684 GET https://api.ciuvo.com/api/analyze?url=http%3A%2F%2Flocalhost%3A8100%2F&version=2.1.3&tag=threesixty&uuid=BC6B28BE-FA4C-474C-BEFD-11D2E9C00FB2 400 (Bad Request)
send @ ciuvo-contentscript.js:5684
load @ ciuvo-contentscript.js:6665
on_storage_return @ ciuvo-contentscript.js:8570
(anonymous) @ ciuvo-contentscript.js:8426
_handleMessage @ ciuvo-contentscript.js:7080
(anonymous) @ ciuvo-contentscript.js:7024
in the ciuvo-contentscript.js
send: function(data) {
var self = this;
this.setupTimeoutTimer(this.timeout);
// IE needs some time to get started...
// TODO: verify that this is still required for IE.
if (this.type === TYPE_XDR) {
// Do not unwrap .send method.
// Required to run on a separate thread.
window.setTimeout(function () {
self.rq.send(data);
}, IE_SEND_TIMEOUT);
} else {
this.rq.send(data);
}
}
};