Shankar
Shankar

Reputation: 59

How to disable related videos at the end of the youtube video in react native

How to disable related videos at the end of the youtube video in react native..??

Below are my code, But its not working

  state = {
    isPlaying: true,
    related :false,
  };
<YouTube
apiKey="XXXXX"
videoId="XXXXX"
play={this.state.isPlaying}
rel={this.state.related}/>

Thanks in Advance

Upvotes: 2

Views: 2817

Answers (1)

Yoel
Yoel

Reputation: 7975

Apparently related videos cannot be disabled

You will continue to receive related videos from that YouTube channel

google

The behavior for the rel parameter is changing on or after September 25, 2018. The effect of the change is that you will not be able to disable related videos. However, you will have the option of specifying that the related videos shown in the player should be from the same channel as the video that was just played.

stackOver

Upvotes: 3

Related Questions