Reputation: 59
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
Reputation: 7975
Apparently related videos cannot be disabled
You will continue to receive related videos from that YouTube channel
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.
Upvotes: 3