Wowza Community

Wowza Streaming engine

image

When I am adding stream file in wowza streaming engine using REST API with swagger or postman, It is adding the stream file in the list but not adding my uri in the stream file. Please help me, I am attaching screen shot here for your reference. Thank You :slight_smile:

Can you post the REST API call details, like URL and payload.

http://192.168.29.150:8087/v2/servers/defaultServer/vhosts/defaultVHost/applications/test_live_app/streamfiles

{“name”: “testing_stream_123”, “uri”: “rtsp://192.168.29.152:59335”}

This works for me:

curl -XPOST -H "Accept: application/json" -H "Content-Type: application/json" -d '{"name":"testing","uri":"rtsp://192.168.29.152:59335"}' http://localhost:8087/v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/live/streamfiles

Make sure you get the right response when you make the call

{"success":true,"message":"","data":null}
1 Like

ok, now it is working for me.

Thank You Karel_Boek