I am trying to make wowza REST api call from my .net application. I am doing that using jquery ajax method. Could anyone please show me how to do that with digest authentication method?
$.ajax({
url:“http://localhost:8087/v2/servers/defaultServer/vhosts/defaultVHost/applications/live/instances/definst/incomingstreams/stream1.stream/monitoring/current”,
type: “GET”,
success: function(response){},
error: function (xhr, status, error){}
});