Hello
im trying to make rest calls with jquery, but i have a 415 (unsupported media type) error. here is my script:
function getActiveStreams() {
$.ajax({
type: "POST",
dataType:"json",
contentType:"application/json",
url: "https://myserverwcs5:8888/rest-api/stream/find",
processData: false,
contentType: false,
data: '{"name":"<?=$_SESSION['roomID']; ?>"}'
}).done(function( response ) {
console.log(response);
});
}
additionnaly there is allow origin error (my call is made from a different server where wcs is installed)
thank you
im trying to make rest calls with jquery, but i have a 415 (unsupported media type) error. here is my script:
function getActiveStreams() {
$.ajax({
type: "POST",
dataType:"json",
contentType:"application/json",
url: "https://myserverwcs5:8888/rest-api/stream/find",
processData: false,
contentType: false,
data: '{"name":"<?=$_SESSION['roomID']; ?>"}'
}).done(function( response ) {
console.log(response);
});
}
additionnaly there is allow origin error (my call is made from a different server where wcs is installed)
thank you