Try to fix oEmbed

This commit is contained in:
MMaker 2025-03-03 13:06:22 -05:00
parent a075a5a7a2
commit aa755dc186
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

5
app.py
View File

@ -353,7 +353,10 @@ 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="ニコニコ動画" property="og:site_name"/>'
og_tags_str += f'\n<link rel="alternate" href="{get_oembed_url(params)}" type="application/json+oembed" title="{video_id}"/>'
if 'twitterbot' in request_user_agent:
logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags")
og_tags_str += f'\n<meta content="{thumbnail_url}" property="twitter:image"/>'
og_tags_str += '\n<meta content="summary_large_image" property="twitter:card"/>'
og_tags_str += '\n<meta content="www.nicovideo.gay" name="twitter:domain"/>'
@ -368,8 +371,6 @@ def proxy(video_id):
# 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>
<!--
niconico proxy - brought to you by https://mmaker.moe