CyberGene thanks. So it's definitely a different issue.
Maybe your server IP has been blacklisted by YouTube.
You could try the following command over SSH and check/share the output:
php flarum kilowhat:rich-embeds:process -v https://www.youtube.com/watch?v=Tm-o8GIMtHQ
Should give you an output like this one:
Retrieved: 2025-03-18T22:23:30+00:00
HTTP Status: 200
OpenGraph: {
"url": "https:\/\/www.youtube.com\/watch?v=Tm-o8GIMtHQ",
"type": "video.other",
"title": "Dave Brubeck Quartet - St Louis Blues- Belgium 1964",
"images": [
{
"url": "https:\/\/i.ytimg.com\/vi\/Tm-o8GIMtHQ\/hqdefault.jpg?sqp=-oaymwEmCOADEOgC8quKqQMa8AEB-AHeA4AC6AKKAgwIABABGGUgZShlMA8=&rs=AOn4CLABkqWlMxMzDHa2rbVYAzLp-WFHiA",
"width": 480,
"height": 360
}
],
"site_name": "YouTube",
"description": "Dave Brubeck - pianoPaul Desmond - alto saxophoneEugene Wright - bassJoe Morello - drumshttp:\/\/www.facebook.com\/Soniricallhttps:\/\/twitter.com\/Soniricall"
}
Icons: [
{
"href": "https:\/\/www.youtube.com\/s\/desktop\/dd6eea47\/img\/logos\/favicon.ico",
"type": "image\/x-icon"
},
{
"href": "https:\/\/www.youtube.com\/s\/desktop\/dd6eea47\/img\/logos\/favicon_32x32.png",
"sizes": [
{
"width": 32,
"height": 32
}
]
},
{
"href": "https:\/\/www.youtube.com\/s\/desktop\/dd6eea47\/img\/logos\/favicon_48x48.png",
"sizes": [
{
"width": 48,
"height": 48
}
]
},
{
"href": "https:\/\/www.youtube.com\/s\/desktop\/dd6eea47\/img\/logos\/favicon_96x96.png",
"sizes": [
{
"width": 96,
"height": 96
}
]
},
{
"href": "https:\/\/www.youtube.com\/s\/desktop\/dd6eea47\/img\/logos\/favicon_144x144.png",
"sizes": [
{
"width": 144,
"height": 144
}
]
}
]
Fallback: {
"title": "Dave Brubeck Quartet - St Louis Blues- Belgium 1964 - YouTube",
"description": "Dave Brubeck - pianoPaul Desmond - alto saxophoneEugene Wright - bassJoe Morello - drumshttp:\/\/www.facebook.com\/Soniricallhttps:\/\/twitter.com\/Soniricall"
}
API Resource: null
And you could also try the following command if you have curl
installed on SSH:
curl -I https://www.youtube.com/watch?v=Tm-o8GIMtHQ
Which should produce an output like this one:
HTTP/2 200
content-type: text/html; charset=utf-8
x-content-type-options: nosniff
cache-control: no-cache, no-store, max-age=0, must-revalidate
pragma: no-cache
expires: Mon, 01 Jan 1990 00:00:00 GMT
date: Tue, 18 Mar 2025 22:25:21 GMT
content-length: 898569
x-frame-options: SAMEORIGIN
strict-transport-security: max-age=31536000
permissions-policy: ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factors=*, ch-ua-platform=*, ch-ua-platform-version=*
report-to: {"group":"youtube_main","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube_main"}]}
origin-trial: AmhMBR6zCLzDDxpW+HfpP67BqwIknWnyMOXOQGfzYswFmJe+fgaI6XZgAzcxOrzNtP7hEDsOo1jdjFnVr2IdxQ4AAAB4eyJvcmlnaW4iOiJodHRwczovL3lvdXR1YmUuY29tOjQ0MyIsImZlYXR1cmUiOiJXZWJWaWV3WFJlcXVlc3RlZFdpdGhEZXByZWNhdGlvbiIsImV4cGlyeSI6MTc1ODA2NzE5OSwiaXNTdWJkb21haW4iOnRydWV9
cross-origin-opener-policy: same-origin-allow-popups; report-to="youtube_main"
content-security-policy: require-trusted-types-for 'script'
p3p: CP="This is not a P3P policy! See http://support.google.com/accounts/answer/151657?hl=de for more info."
server: ESF
x-xss-protection: 0
set-cookie: YSC=EehG1zTPxgQ; Domain=.youtube.com; Path=/; Secure; HttpOnly; SameSite=none
set-cookie: __Secure-YEC=CgstdmR4ZlUxaW5LcyjR5ee-BjIKCgJDSBIEGgAgLw%3D%3D; Domain=.youtube.com; Expires=Fri, 17-Apr-2026 22:25:20 GMT; Path=/; Secure; HttpOnly; SameSite=lax
set-cookie: VISITOR_PRIVACY_METADATA=CgJDSBIEGgAgLw%3D%3D; Domain=.youtube.com; Expires=Fri, 17-Apr-2026 22:25:22 GMT; Path=/; Secure; HttpOnly; SameSite=none
set-cookie: VISITOR_INFO1_LIVE=; Domain=.youtube.com; Expires=Wed, 22-Jun-2022 22:25:22 GMT; Path=/; Secure; HttpOnly; SameSite=none
alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
If your IP is blocked, the HTTP response will be different from 200 in both commands, or there will be some sort of timeout message.