I'm making a 1 on 1 video call app using TokBox. I'm opening a session using this code:
[_session connectWithApiKey:kApiKey token:kToken];
after getting the didConnect message i'm publishing a stream on one user device using this code:
_publisher = [[OTPublisher alloc] initWithDelegate:self];
[_publisher setName:@"PublishName"];
[_session publish:_publisher];
[self.view addSubview:_publisher.view];
[_publisher.view setFrame:CGRectMake(0, 0, widgetWidth, widgetHeight)];
What do I need to transfer to the other user in order for him to see what the first user publishes? I tried going through the docs but It's really unclear to me. Do I need a session ID? Publish ID?
Thanks.