Add "Bot" to User Agent to coerce Twitter into serving OGP <meta> tags.

This commit is contained in:
Mark Felder 2020-07-07 11:21:05 -05:00
commit 18438a9bf0
2 changed files with 5 additions and 1 deletions

View file

@ -86,7 +86,10 @@ defmodule Pleroma.Web.RichMedia.Parser do
end
try do
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url, [], adapter: opts)
rich_media_agent = Pleroma.Application.user_agent() <> "; Bot"
{:ok, %Tesla.Env{body: html}} =
Pleroma.HTTP.get(url, [{"user-agent", rich_media_agent}], adapter: opts)
html
|> parse_html()