Hello,
Is it possible to authenticate with REST API to CS which has OTDS authentication enabled? And is it possible to authenticate users without providing credentials when SSO is available with OTDS?
I've read in another post that REST url should have anonymous authentication set on web server however i don't see how it is possible when using OTDS. Is this true?
Also previously i had working code for CS 10.5 (CS authentication) that no longer works when OTDS is set as authentication method and CS 10.5 has 2014-06 patch (updated REST syntax maybe?). The code that previously worked just fine for authentication:
var ticket;
$.post("http://url/cs/livelink.exe/api/v1/auth",
{
username:"Admin",
password:"xx"
},
function(data,status){
ticket = data.ticket;
});
But now the same gives 500 error.
Thanks,
Ugis