Shailesh
Shailesh

Reputation: 1803

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.

Upvotes: 5

Views: 255

Answers (1)

songz
songz

Reputation: 2092

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

Upvotes: 1

Related Questions