Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TokBox API doesn't work with an S3?

Has anyone implemented the TokBox API? It doesn't seems to work on an S3.

I am using S3 and iPhone. It works fine on two iPhones but not between my S3 and an iPhone?

The sample code can be found at here

in the above code sample

this is called

@Override
public void onSessionConnected() {
}

means session is connected

but

@Override
public void onPublisherStreamingStarted() {
    Log.i(LOGTAG, "publisher is streaming!");
}

or

@Override
public void onPublisherException(OpentokException exception) {
    Log.i(LOGTAG, "publisher failed! " + exception.toString());
}

this never be called

That means my video publishing is not started.

like image 244
shailesh Avatar asked Nov 12 '22 01:11

shailesh


1 Answers

Make sure your iPhone and S3 are both using the flash SDK and that they are both connected to the same session ID.

like image 175
songz Avatar answered Nov 15 '22 13:11

songz