Hello, in which way did I have to add the parameters for the AMFDataList-object?
I used the example for the user authentication: (https://www.wowza.com/docs/how-to-do-user-authentication-for-flash-rtmp-client-using-jdbc-connection-to-mysql-database).
public void onConnect(IClient client, RequestFunction function, AMFDataList params)
{
String userName = getParamString(params, PARAM1);
String password = getParamString(params, PARAM2);
I tryed to parse parameters about the url “rtmp://a:b@localhost/test” and “rtmp://localhost/test?a&b” without success. I use the Flowplayer. Did I have to add the parameters there?
Thanks.