Hi,
I use REST API to log-on to Content Server with the following code
function auth2() {
var CSURL = "http://yyyy/otcs/llisapi.dll/api/v1/auth";
var TBURL = "https://xxxx/content/v4/auth";
$.ajax({
type: "POST",
url: CSURL,
dataType: "json",
data: { username: "xxxx", password: "xxxx" },
success: function(resp){
console.log(resp);
ticket = resp.ticket;
},
error: function(xhr, ajaxOptions, thrownError){
console.log(thrownError);
},
complete: function(r) {
//console.log(r);
}
});
}
How can I do similar to log-on to Tempo Box? There is no SSO enabled between both
Eventually I want to accept Tempo Box shares. And ideally do that through user impersonation.
Thanks
Uldis