Wowza Community

Secured rest-api request

Hello!

I use jquery with basic authentification for sending get-requests:

               $.get({
			dataType: 'json',
			url: "", 
			crossDomain: true,
			beforeSend: function(xhr) {
				xhr.setRequestHeader('Authorization', "Basic " + btoa("username:password"));
			},
                        success: function(data) {
				$("#div").append("data");
	                }
		})

Is it possible to use https instead of http? And how can I modify authentification to make my web-site and wowza secured?

Thank you!

Hello,

Thanks for contacting Wowza Forums!

Here are some docs that can help you enable secure connections to the server:

WOWZA Streaming Engine Connection over HTTPS

Media Distribution Security

regards,

Jermaine