Youtube: sign in to confirm you’re not a bot

Youtube video can’t be watch since this morning, error like this is every video:
image

1 Like

This seems related to YT. Can you play that same video directly on YT?

1 Like

I can play the video direcly on YT with a login account, but I’m facing the same error when trying to play the video in Incognito mode.

1 Like

I’ll check with our team if there’s anything we can do.

1 Like

I’m using a VPN deployed on AWS lightsail bundled to a Pulbic IPV4 address which seems like banned by Youtube from unlogin access. Is there any way to watch youtube on Linq with a login user, or some how inject the login user cookie to the youtube iframe?

1 Like


LinQ are using below no Cookie youtube linq in the Iframe, I can’t open link below in a new browser tab

but If I delete the nocookie in the URL, I can access the video correctly.

I have a work around now, by editing the src= in the HTML, is it possible to create a feature flag in the settings in order to control this?

1 Like

Workaround on this issue:
use js below in the browser console:
document.querySelectorAll(‘iframe’).forEach(function(iframe) {
// Get the current src attribute
let src = iframe.getAttribute(‘src’);

// Replace "youtube-nocookie.com" with "youtube.com"
if (src && src.includes('youtube-nocookie.com')) {
    src = src.replace('youtube-nocookie.com', 'youtube.com');
    iframe.setAttribute('src', src);
}

});

1 Like

I’m having this issue today… never had it before.

2 Likes

I am having this issue everywhere. Not only on LingQ. Is it the VPN that causes this?

2 Likes

I experience the same problem. Howcan I login to Youtube from Lingq?

1 Like