zmxv / react-native-sound

React Native module for playing sound clips
MIT License
2.79k stars 749 forks source link

how can i play from firebase link ? #463

Open shaheem-khanzada opened 6 years ago

shaheem-khanzada commented 6 years ago

this is my link https://firebasestorage.googleapis.com/v0/b/chatonymous-309.appspot.com/o/audio%2F1531733254464?alt=media&token=5c11c5d0-ef12-4bd8-bccc-23d936726f3f

vikeen commented 6 years ago

Here is the code I use for my project.

this.audio = new Sound(DOWNLOAD_URL, null, (error) => {
    if (error) {
        // handle error
    }
    // download complete
});
ArjunKarki commented 2 years ago

I still can't play url from firebase .