Hi,
as I did not have a single suggesting from my previous post, let me try again with a slightly different approach. We are using CS Widgets and trying to follow the sample provided by OpenText in the Getting Started of the Widgets documentation (https://knowledge.opentext.com/knowledge/cs.dll?func=ll&objId=57082486&objAction=browse&viewType=1).
We know the correct location of the widgets and after solving problems such as the CORS and others we were finally able to move forward. We are using OTDS for the Content Server, and when running the sample, provided (code below) we get an authentication window, we are not sure where it is coming from or even worse, able to successfully pass it.

Any suggestions?
CODE ------------------------------------------------------------------------------------
var connector = new csui.util.Connector( {
connection: {
url : "http://servername/livelink/livelink.exe/api/v1/",
supportPath : "/img"
}
}),
// Create the container browsing widget.
browser = new csui.widget.FolderBrowserWidget( {
connector : connector,
placeholder: "#folderBrowser"
});
END CODE ------------------------------------------------------------------------------------