{"id":39567,"date":"2016-08-28T13:48:02","date_gmt":"2016-08-28T08:18:02","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=39567"},"modified":"2016-08-29T09:29:58","modified_gmt":"2016-08-29T03:59:58","slug":"wowza-servers-application-management-using-rest-api","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/","title":{"rendered":"Wowza Servers Application Management using REST-API"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-39568\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/08\/wowza-streaming-engine-horizontal-1024-1920x600-300x93.png\" alt=\"wowza-streaming-engine-horizontal-1024-1920x600\" width=\"610\" height=\"189\" \/><\/p>\n<p><b>Wowza Streaming Engine<\/b><span style=\"font-weight: 400;\"> is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a <a title=\"java consulting services\" href=\"http:\/\/www.tothenew.com\/java-development-services-development-services\">Java application<\/a> which is supported on almost all types of operating systems.<\/span><\/p>\n<p><b>Use Case<br \/>\n<\/b>In this blog, I\u2019ll be demonstrating the use of Wowza REST-API which can be used to <a title=\"DevOps Automation Services\" href=\"http:\/\/www.tothenew.com\/devops-automation-consulting\">automate the tasks<\/a> on Wowza servers running in your application stack. The tasks include creating new application channels, copying existing channels to create new ones and deleting the non-required applications using command\u00a0line as it is a bit tedious and repetitive task when performed from Wowza\u2019s GUI. The tasks can be automated using shell scripts in any language.<\/p>\n<p><b>Enabling Wowza REST-API<br \/>\n<\/b>To enable Wowza REST-API in an existing Wowza server, go to the installation directory of Wowza [install_dir]\/conf\/Server.xml and add the following code snippet:<\/p>\n<p>[js]<br \/>\n &lt;RESTInterface&gt;<br \/>\n                        &lt;Enable&gt;true&lt;\/Enable&gt;<br \/>\n                        &lt;IPAddress&gt;*&lt;\/IPAddress&gt;<br \/>\n                        &lt;Port&gt;8087&lt;\/Port&gt;<br \/>\n                        &lt;!&#8211; none, basic, digest&#8211;&gt;<br \/>\n                        &lt;AuthenticationMethod&gt;none&lt;\/AuthenticationMethod&gt;<br \/>\n                        &lt;DiagnosticURLEnable&gt;true&lt;\/DiagnosticURLEnable&gt;<br \/>\n                        &lt;SSLConfig&gt;<br \/>\n                                &lt;Enable&gt;false&lt;\/Enable&gt;<br \/>\n                                &lt;KeyStorePath&gt;&lt;\/KeyStorePath&gt;<br \/>\n                                &lt;KeyStorePassword&gt;&lt;\/KeyStorePassword&gt;<br \/>\n                                &lt;KeyStoreType&gt;JKS&lt;\/KeyStoreType&gt;<br \/>\n                                &lt;SSLProtocol&gt;TLS&lt;\/SSLProtocol&gt;<br \/>\n                                &lt;Algorithm&gt;SunX509&lt;\/Algorithm&gt;<br \/>\n                                &lt;CipherSuites&gt;&lt;\/CipherSuites&gt;<br \/>\n                                &lt;Protocols&gt;&lt;\/Protocols&gt;<br \/>\n                        &lt;\/SSLConfig&gt;<br \/>\n                        &lt;IPWhiteList&gt;*&lt;\/IPWhiteList&gt;<br \/>\n                        &lt;IPBlackList&gt;&lt;\/IPBlackList&gt;<br \/>\n                        &lt;EnableXMLFile&gt;false&lt;\/EnableXMLFile&gt;<br \/>\n                        &lt;DocumentationServerEnable&gt;true&lt;\/DocumentationServerEnable&gt;<br \/>\n                        &lt;DocumentationServerPort&gt;8089&lt;\/DocumentationServerPort&gt;<br \/>\n                        &lt;!&#8211; none, basic, digest&#8211;&gt;<br \/>\n                        &lt;DocumentationServerAuthenticationMethod&gt;none&lt;\/DocumentationServerAuthenticationMethod&gt;<br \/>\n                        &lt;Properties&gt;<br \/>\n                                &lt;Property&gt;<br \/>\n                                        &lt;Name&gt;restUserHTTPHeaders&lt;\/Name&gt;<br \/>\n                                        &lt;Value&gt;Access-Control-Allow-Origin:*|Access-Control-Allow-Methods:OPTIONS,GET,PUT,DELETE,POST|Access-Control-Allow-Headers:Content-Type&lt;\/Value&gt;<br \/>\n                                &lt;\/Property&gt;<br \/>\n                        &lt;\/Properties&gt;<br \/>\n                &lt;\/RESTInterface&gt;[\/js]<\/p>\n<p><b>Options which can be set from the above configuration:<br \/>\n<\/b><b>1) Port: <\/b><span style=\"font-weight: 400;\">Port on which you want the REST-API to respond to the queries<br \/>\n<\/span><b>2) Authentication Method: <\/b><span style=\"font-weight: 400;\">The authentication method to be used while accessing the REST-API interface<br \/>\n<\/span><b>3) SSL Certificate: <\/b><span style=\"font-weight: 400;\">SSL setup for the REST-API (if required)<br \/>\n<\/span><b>4) IP (Whitelist and Blacklist): <\/b><span style=\"font-weight: 400;\">To specifie the IP addresses from where<\/span> <span style=\"font-weight: 400;\">we want to access\/deny \u00a0the REST-API interface<br \/>\n<\/span><b>5) Custom Headers: <\/b><span style=\"font-weight: 400;\">Custom headers to be used with REST-API<\/span><\/p>\n<p><b>Note:<\/b><span style=\"font-weight: 400;\"> After modifying the Server.xml configuration file in Wowza, there is a need to restart the Wowza Streaming Engine.<\/span><\/p>\n<p><b>Important Commands For REST-API:<\/b><\/p>\n<p><b><b>1) To get list of Wowza channels:<br \/>\n<\/b><\/b><\/p>\n<p>[js]<br \/>\ncurl -X GET &#8211;header &#8216;Accept:application\/json; charset=utf-8&#8217; http:\/\/localhost:8087\/v2\/servers\/_defaultServer_\/vhosts\/_defaultVHost_\/applications<br \/>\n[\/js]<\/p>\n<p><b>2) To get the information of a single Wowza Application (Channel: live1)<br \/>\n<\/b><\/p>\n<p>[js]curl -X GET &#8211;header &#8216;Accept:application\/json; charset=utf-8&#8217; http:\/\/localhost:8087\/v2\/servers\/_defaultServer_\/vhosts\/_defaultVHost_\/applications\/live1[\/js]<\/p>\n<p><b style=\"line-height: 1.71429; font-size: 1rem;\">\u00a03) To create a single Wowza Application (Channel: live2)<br \/>\n<\/b><\/p>\n<p>[js]curl -X POST &#8211;header &#8216;Accept:application\/json; charset=utf-8&#8217; &#8211;header &#8216;Content-type:application\/json; charset=utf-8&#8217; http:\/\/localhost:8087\/v2\/servers\/_defaultServer_\/vhosts\/_defaultVHost_\/applications\/live2 &#8211;data @body.json [\/js]<\/p>\n<p><b>Note: <\/b>In body.json, we can pass the JSON body of the application\u2019s information. We can edit the output of the step 2 accordingly and use it to create a new channel.<\/p>\n<p><b>4) \u00a0\u00a0To delete a single Wowza Application (Channel: live2)<br \/>\n<\/b><\/p>\n<p>[js]curl -X DELETE &#8211;header &#8216;Accept:application\/json; charset=utf-8&#8217; http:\/\/localhost:8087\/v2\/servers\/_defaultServer_\/vhosts\/_defaultVHost_\/applications\/live1 [\/js]<\/p>\n<p><strong><span style=\"font-weight: 400;\">By using the above documentation, you can automate the process of managing Wowza applications using customized scripts on multiple Wowza servers.<\/span><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported [&hellip;]<\/p>\n","protected":false},"author":170,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":19,"footnotes":""},"categories":[1174,2348,1],"tags":[3938,3931,3932,3939,3934,3936,3935,3933,3937],"class_list":["post-39567","post","type-post","status-publish","format-standard","hentry","category-aws-2","category-devops-technology","category-technology","tag-using-wowza-on-aws","tag-wowza","tag-wowza-application-management","tag-wowza-automation","tag-wowza-aws","tag-wowza-channels-api","tag-wowza-management-on-linux","tag-wowza-on-aws","tag-wowza-streaming-engine-on-aws"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Tarun Saxena\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Wowza Servers Application Management using REST-API | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Wowza Servers Application Management using REST-API | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#article\",\"name\":\"Wowza Servers Application Management using REST-API | TO THE NEW Blog\",\"headline\":\"Wowza Servers Application Management using REST-API\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tarun-saxena\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/08\\\/wowza-streaming-engine-horizontal-1024-1920x600-300x93.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#articleImage\"},\"datePublished\":\"2016-08-28T13:48:02+05:30\",\"dateModified\":\"2016-08-29T09:29:58+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#webpage\"},\"articleSection\":\"AWS, DevOps, Technology, Using Wowza on AWS, Wowza, Wowza Application Management, Wowza Automation, Wowza AWS, Wowza Channels API, Wowza management on Linux, Wowza on AWS, Wowza Streaming Engine on AWS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#listItem\",\"name\":\"Wowza Servers Application Management using REST-API\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#listItem\",\"position\":3,\"name\":\"Wowza Servers Application Management using REST-API\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tarun-saxena\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tarun-saxena\\\/\",\"name\":\"Tarun Saxena\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/abdca3c8-9650-46c0-b54a-6bd9ae2dc989_2752-Tarun-Saxena-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Tarun Saxena\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/\",\"name\":\"Wowza Servers Application Management using REST-API | TO THE NEW Blog\",\"description\":\"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/wowza-servers-application-management-using-rest-api\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tarun-saxena\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tarun-saxena\\\/#author\"},\"datePublished\":\"2016-08-28T13:48:02+05:30\",\"dateModified\":\"2016-08-29T09:29:58+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Wowza Servers Application Management using REST-API | TO THE NEW Blog","description":"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported","canonical_url":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#article","name":"Wowza Servers Application Management using REST-API | TO THE NEW Blog","headline":"Wowza Servers Application Management using REST-API","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/tarun-saxena\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/08\/wowza-streaming-engine-horizontal-1024-1920x600-300x93.png","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#articleImage"},"datePublished":"2016-08-28T13:48:02+05:30","dateModified":"2016-08-29T09:29:58+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#webpage"},"articleSection":"AWS, DevOps, Technology, Using Wowza on AWS, Wowza, Wowza Application Management, Wowza Automation, Wowza AWS, Wowza Channels API, Wowza management on Linux, Wowza on AWS, Wowza Streaming Engine on AWS"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#listItem","name":"Wowza Servers Application Management using REST-API"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#listItem","position":3,"name":"Wowza Servers Application Management using REST-API","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/tarun-saxena\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/tarun-saxena\/","name":"Tarun Saxena","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/abdca3c8-9650-46c0-b54a-6bd9ae2dc989_2752-Tarun-Saxena-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Tarun Saxena"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/","name":"Wowza Servers Application Management using REST-API | TO THE NEW Blog","description":"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/tarun-saxena\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/tarun-saxena\/#author"},"datePublished":"2016-08-28T13:48:02+05:30","dateModified":"2016-08-29T09:29:58+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Wowza Servers Application Management using REST-API | TO THE NEW Blog","og:description":"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported","og:url":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Wowza Servers Application Management using REST-API | TO THE NEW Blog","twitter:description":"Wowza Streaming Engine is a streaming software utility which is developed by Wowza Media Systems. The utility is capable of streaming various types of videos and audio files on mobile, tablet and personal computer etc. The types of streaming videos include live video and on-demand streaming. It is basically a Java application which is supported","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"39567","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:13:48","updated":"2024-02-29 08:44:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWowza Servers Application Management using REST-API\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"Wowza Servers Application Management using REST-API","link":"https:\/\/www.tothenew.com\/blog\/wowza-servers-application-management-using-rest-api\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/39567","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/170"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=39567"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/39567\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=39567"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=39567"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=39567"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}