Wowza Community

How do I get the HLS playback url in a custom wowza module?

I am trying to write a custom module to get the HLS playback url. The url will be sent to another external application. How to get the complete HLS playback URL in a custom module

@Arvind Kumar, you can hook onto the onHTTPSessionCreate trigger and use httpSession.getUri()

import com.wowza.wms.module.*;
import com.wowza.wms.httpstreamer.model.*;

public class MyFirstModule extends ModuleBase {
	public void onHTTPSessionCreate(IHTTPStreamerSession httpSession) {
		String uri = httpSession.getUri();
	}
}