Using StreamingMedia to play RTMP stream

I’m attempting to use the StreamingMedia Plugin to stream a Facebook Live Stream. I’ll paste my code below, which is basically a copy/paste from the docs. Has anyone had any success using any player to stream a Facebook Live Stream?

const options: StreamingVideoOptions = {
  successCallback: () => { console.log('Video played') },
  errorCallback: (e) => { console.log(e) },
  orientation: 'portrait',
  shouldAutoClose: true,
  controls: false
};

this.streamingMedia.playVideo('rtmps://live-api-s.facebook.com:443/rtmp/1002093633573536?s_bl=1&s_psm=1&s_sc=1002094663573433&s_sw=0&s_vt=api-s&a=AbyTuvN0qkDDb9F3', options);