我想从我的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}
/>
谢谢