Remove tags that might be breaking Twitter

This commit is contained in:
MMaker 2025-02-26 08:45:20 -05:00
parent 5a194507a0
commit 71b7dac492
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

16
app.py
View File

@ -309,14 +309,14 @@ def proxy(video_id):
tag["content"] = cdn_video_url
og_tags_str = "\n".join(str(tag) for tag in og_tags if tag.get("property") not in ["og:site_name"])
og_tags_str += '\n<meta content="0" property="twitter:image"/>'
og_tags_str += '\n<meta content="player" property="twitter:card"/>'
og_tags_str += '\n<meta content="video/mp4" property="twitter:player:stream:content_type"/>'
og_tags_str += f'\n<meta content="{cdn_video_url}" property="twitter:player:stream"/>'
if video_width:
og_tags_str += f'\n<meta content="{video_width}" property="twitter:player:width"/>'
if video_height:
og_tags_str += f'\n<meta content="{video_height}" property="twitter:player:height"/>'
# og_tags_str += '\n<meta content="0" property="twitter:image"/>'
# og_tags_str += '\n<meta content="player" property="twitter:card"/>'
# og_tags_str += '\n<meta content="video/mp4" property="twitter:player:stream:content_type"/>'
# og_tags_str += f'\n<meta content="{cdn_video_url}" property="twitter:player:stream"/>'
# if video_width:
# og_tags_str += f'\n<meta content="{video_width}" property="twitter:player:width"/>'
# if video_height:
# og_tags_str += f'\n<meta content="{video_height}" property="twitter:player:height"/>'
og_tags_str += '\n<meta content="ニコニコ動画" property="og:site_name"/>'
og_tags_str += f'\n<link rel="alternate" href="{get_oembed_url(params)}" type="application/json+oembed" title="{video_id}"/>'
html_response = f"""<!DOCTYPE html>