从我的React / Expo应用程序打开Spotify应用程序

时间:2019-10-18 15:33:38

标签: react-native expo spotify

我想从我的react-native(expo)应用程序内部打开Spotify。我目前正在使用WebBrowser;毫不奇怪,它会打开一个新的浏览器,显示播放列表。

有人发现从Expo / RctNtv中启动Spotify app 的简单方法吗?

 _handlePressButtonAsync = async () => {
    let result = await WebBrowser.openBrowserAsync('http://open.spotify.com/playlist/{id});
    this.setState({ result });
  };

<Button
          style={styles.paragraph}
          title="Open Spotify"
          onPress={this._handlePressButtonAsync}
        />

谢谢

0 个答案:

没有答案