Opentok React Native没有发布任何东西

时间:2019-02-12 12:39:59

标签: reactjs react-native opentok tokbox

我在我的应用程序中使用opentok-react-native库,我想将音频和视频流发布为音频/视频通话。我随信跟着文档,但无法建立联系。

这是我尝试过的:

render() {

return (

    <OTSession
          apiKey={ this.state.api_key }
          sessionId={ this.state.appointment.opentok_session }
          token={ this.state.appointment.opentok_token }
          connectionCreated={ console.warn('connected') }
          connectionDestroyed={ console.warn('destroyed') }
          sessionConnected={ console.warn('session connected') }
          sessionReconnecting={ console.warn('session reconnecting') }
          sessionReconnected={ console.warn('session re connected') }
          sessionDisconnected={ console.warn('session destroyed') }
          streamCreated={ console.warn('stream created') }
          streamDestroyed={ console.warn('stream destroyed') }
        >
          <OTPublisher
            properties={{ publishAudio: true, publishVideo: true }}
            style={{ height: 100, width: 100 }}
          />
          <OTSubscriber  style={{ flex: 1 }} />
        </OTSession>

    )

}

我在另一个应用程序中编写了完全相同的组件-有两个应用程序。组件加载完成后,我得到了所有console.warn(),但没有其他东西。

1 个答案:

答案 0 :(得分:0)

此处是TokBox开发人员的传播者。

您似乎正在尝试通过各个道具监听事件。请注意,您需要使用eventHandlers属性来设置事件监听器。这是一个如何为OTSession组件设置事件侦听器的示例:In Opentok-react-native, how do I get various events information like client connected, disconnected and so on

您还需要为width组件指定heightOTSubscriber,以便库知道创建本机视图的大小。

我还建议签出OpenTok-React-Native-Samples回购以供参考。