JS and PHP
every user publishes - and can subscribe to different users streams it is a one way subscription - the subscriber sees the publisher and not other members of the group. The publisher does not see those who subscribed to him.
my logic: 1. everyone is publishing - session.on - is not called 2. when subscribing - i change the sessionId and the token - to the channel the user subscribed to (can i do that?) that part does not seem to work - i get: "session is undefined"
can i change sessionId and token midway like i have done?
(each user gets his own token for each session through the PHP SDK)
There's actually no need to have more than one session. The problem can be boiled down to the fact that each client should publish a stream, and each client should be able to select and subscribe to any one stream from other clients. Logically, a session is already like a group of streams, so there's no need to create more than one.
I have an example solution for you. In this solution, the PHP SDK just needs to create one token for each client in the session and there's no special logic on the server side. For now, I've hard-coded one token into the script, and it will work fine, just open the same page in several windows/tabs. Each stream can be selected using its
streamId
. In your application you may want to add unique token data for each client using the PHP SDK and then read that token data using thestream.connection.data
property to present a more user friendly identifier of each stream (I've marked where this would go in the code with aTODO
comment).Example:
A live page for this example is available on JSBin: http://jsbin.com/duxowa/10/edit
Note: The token may be expired if you are viewing this much later than my post. Use your own
apiKey
,sessionId
, andtoken
from the Dashboard or using a Server SDK if that is the case.