From 60110f8e7527e953bd7aef104f8d6ec457899dbc Mon Sep 17 00:00:00 2001 From: kaitoyama <45167401+kaitoyama@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:14:35 +0900 Subject: [PATCH] add 'curl' into UserAgent to get OGP --- service/ogp/parser/domain.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service/ogp/parser/domain.go b/service/ogp/parser/domain.go index a903cda1a..e7a421f52 100644 --- a/service/ogp/parser/domain.go +++ b/service/ogp/parser/domain.go @@ -13,7 +13,8 @@ var client = http.Client{ } // X(Twitter)のOGPを取得するのにuserAgentの中にbotという文字列が入っている必要がある -const userAgent = "traq-ogp-fetcher-bot; contact: github.com/traPtitech/traQ" +// Spotifyの新しいOGPを取得するのにuserAgentの中にcurl-botという文字列が入っている必要がある +const userAgent = "traq-ogp-fetcher-curl-bot; contact: github.com/traPtitech/traQ" func FetchSpecialDomainInfo(url *url.URL) (og *opengraph.OpenGraph, meta *DefaultPageMeta, isSpecialDomain bool, err error) { switch url.Host {