Jump to content
  • 0

404 - On Creating New Application


Amir Hazan
 Share

Question

  • Answers 2
  • Created
  • Last Reply

Top Posters For This Question

Popular Days

Top Posters For This Question

2 answers to this question

Recommended Posts

  • 0

Hi Amir

You can disable authentication by commenting out the following lines below from /usr/local/antmedia/webapps/root/WEB-INF/web.xml and you can use IP filtering for accessing the REST API as documented here

 

   <filter-name>AuthenticationFilter</filter-name>
                <filter-class>io.antmedia.console.rest.AuthenticationFilter</filter-class>
        </filter>

        <filter-mapping>
                <filter-name>AuthenticationFilter</filter-name>
                <url-pattern>/rest/*</url-pattern>
        </filter-mapping>

 

After that you can call the management REST API from postman.

 

Regards,

Yash

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...