Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
when I submit a POST request like so:var logData = '<ClientLog><logData>This is some logged data for the log file 20221011_1</logData></ClientLog>';
var xhr = new XMLHttpRequest();
xhr.addEventListener("readystatechange", function() {
if(this.readySt...
Hi All, How can I best format my POST request for CompressedClientLog? CompressedClientLog—Post Compressed Log to Finesse - Finesse - Document - Cisco DevNetCompressedClientLog—Post Compressed Log to Finesse var data = new FormData();
var logObj = '<...
Hi All, How can I best format my POST request for CompressedClientLog? CompressedClientLog—Post Compressed Log to Finesse - Finesse - Document - Cisco DevNetCompressedClientLog—Post Compressed Log to Finesse var data = new FormData();
var logObj = '<...
Hi, trying to trigger refresh of the Cisco Finesse desktop page/application when clicking on a button in a Gadget. When I try and use classic Javascript functions like location.reload(true); the reload does not happen. Any ideas or suggestions out ...
This answer in Webex chat DevNet Dev Support Questions helped resolve this:If that user is SSO enabled, you need to get the bearer token rather than basic auth with username/password.Such as: xhr.setRequestHeader("Authorization", "Bearer eyJjdHk****...